Thread (8 messages) 8 messages, 3 authors, 2014-03-28
STALE4478d
Revisions (20)
  1. v3 [diff vs current]
  2. v3 [diff vs current]
  3. v3 current
  4. v4 [diff vs current]
  5. v5 [diff vs current]
  6. v6 [diff vs current]
  7. v6 [diff vs current]
  8. v6 [diff vs current]
  9. v6 [diff vs current]
  10. v6 [diff vs current]
  11. v7 [diff vs current]
  12. v8 [diff vs current]
  13. v9 [diff vs current]
  14. v9 [diff vs current]
  15. v9 [diff vs current]
  16. v9 [diff vs current]
  17. v9 [diff vs current]
  18. v9 [diff vs current]
  19. v10 [diff vs current]
  20. v10 [diff vs current]

[PATCH v3 1/3] PSCI: Add initial support for PSCIv0.2 functions

From: Ashwin Chaugule <hidden>
Date: 2014-03-28 15:00:04

Hi Rob,

On 28 March 2014 09:54, Rob Herring [off-list ref] wrote:
quoted
+#define PSCI_VER_MAJOR_MASK            0xffff0000
+#define PSCI_VER_MINOR_MASK            0x0000ffff
+#define PSCI_VER_MAJOR_SHIFT   16
+#define PSCI_VER_MAJOR(ver)            \
+       ((ver & PSCI_VER_MAJOR_MASK) >> PSCI_VER_MAJOR_SHIFT)
+#define PSCI_VER_MINOR(ver)            (ver & PSCI_VER_MINOR_MASK)
This can go in the header.
Will do.
[snip]
quoted
+       ver = psci_get_version();
+
+       pr_info("PSCIv%d.%d detected in firmware.\n", PSCI_VER_MAJOR(ver),
+                       PSCI_VER_MINOR(ver));
+
+       if (PSCI_VER_MAJOR(ver) == 0 && PSCI_VER_MINOR(ver) < 2) {
So we want to allow 0.3, but not 1.x? I think we want to allow any
later version. Later versions either have to be backward's compatible
with 0.2 or have to not have "arm,psci-0.2" compatible string.
If its 1.x, it should still go through? Should only fail for 0.1 or 0.0.
Does this work if ver is an error value? We may have implementations
that failed to implement this function (which should not be ignored
for now).
True. What is a good err value to check for? negative values?

One would hope implementations would return (-7) NOT_PRESENT, but it
could also be garbage?
quoted
+ *
+ *     Copyright (C) 2014, Ashwin Chaugule [off-list ref]
I believe this should be:

Copyright (C) 2014 Linaro Ltd.
Author: Ashwin Chaugule [off-list ref]

And typically the copyright is placed above the license.
Ok.
quoted
+
+#define PSCI_RET_SUCCESS               0
+#define PSCI_RET_EOPNOTSUPP            -1
+#define PSCI_RET_EINVAL                        -2
+#define PSCI_RET_EPERM                 -3
Please fill out all error codes.
Ok, I see the return codes table. Will add all of it.

Cheers,
Ashwin
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help