]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/scom: Enable 64-bit addresses
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 10 Oct 2013 08:18:02 +0000 (19:18 +1100)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 6 Nov 2013 03:13:49 +0000 (14:13 +1100)
On P8, XSCOM addresses has a special "indirect" form that
requires more than 32-bits, so let's use u64 everywhere in
the code instead of u32.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/include/asm/scom.h
arch/powerpc/platforms/powernv/opal-xscom.c
arch/powerpc/platforms/wsp/scom_wsp.c

index 07dcdcfdaefc4b4b4ed5fd01de00ffc8ebefa712..f5cde45b116120fe4550ad47e56390ef39430c3b 100644 (file)
@@ -54,8 +54,8 @@ struct scom_controller {
        scom_map_t (*map)(struct device_node *ctrl_dev, u64 reg, u64 count);
        void (*unmap)(scom_map_t map);
 
-       int (*read)(scom_map_t map, u32 reg, u64 *value);
-       int (*write)(scom_map_t map, u32 reg, u64 value);
+       int (*read)(scom_map_t map, u64 reg, u64 *value);
+       int (*write)(scom_map_t map, u64 reg, u64 value);
 };
 
 extern const struct scom_controller *scom_controller;
@@ -137,7 +137,7 @@ static inline void scom_unmap(scom_map_t map)
  *
  * Returns 0 (success) or a negative error code
  */
-static inline int scom_read(scom_map_t map, u32 reg, u64 *value)
+static inline int scom_read(scom_map_t map, u64 reg, u64 *value)
 {
        int rc;
 
@@ -155,7 +155,7 @@ static inline int scom_read(scom_map_t map, u32 reg, u64 *value)
  *
  * Returns 0 (success) or a negative error code
  */
-static inline int scom_write(scom_map_t map, u32 reg, u64 value)
+static inline int scom_write(scom_map_t map, u64 reg, u64 value)
 {
        return scom_controller->write(map, reg, value);
 }
index 3ed5c6498324c2aec41ed7dae4992c08d7a5f62d..09a90d8897baafd1a31c83f967c2ca746e20669e 100644 (file)
@@ -27,7 +27,7 @@
  */
 struct opal_scom_map {
        uint32_t chip;
-       uint32_t addr;
+       uint64_t addr;
 };
 
 static scom_map_t opal_scom_map(struct device_node *dev, u64 reg, u64 count)
@@ -71,7 +71,7 @@ static int opal_xscom_err_xlate(int64_t rc)
        }
 }
 
-static int opal_scom_read(scom_map_t map, u32 reg, u64 *value)
+static int opal_scom_read(scom_map_t map, u64 reg, u64 *value)
 {
        struct opal_scom_map *m = map;
        int64_t rc;
@@ -80,7 +80,7 @@ static int opal_scom_read(scom_map_t map, u32 reg, u64 *value)
        return opal_xscom_err_xlate(rc);
 }
 
-static int opal_scom_write(scom_map_t map, u32 reg, u64 value)
+static int opal_scom_write(scom_map_t map, u64 reg, u64 value)
 {
        struct opal_scom_map *m = map;
        int64_t rc;
index 54172c4a8a641ea4fd3f577fc581f09cfb7e5c2c..8928507affead7aa3f9f128232af8d4822188331 100644 (file)
@@ -50,7 +50,7 @@ static void wsp_scom_unmap(scom_map_t map)
        iounmap((void *)map);
 }
 
-static int wsp_scom_read(scom_map_t map, u32 reg, u64 *value)
+static int wsp_scom_read(scom_map_t map, u64 reg, u64 *value)
 {
        u64 __iomem *addr = (u64 __iomem *)map;
 
@@ -59,7 +59,7 @@ static int wsp_scom_read(scom_map_t map, u32 reg, u64 *value)
        return 0;
 }
 
-static int wsp_scom_write(scom_map_t map, u32 reg, u64 value)
+static int wsp_scom_write(scom_map_t map, u64 reg, u64 value)
 {
        u64 __iomem *addr = (u64 __iomem *)map;