4 * Copyright 2010 Benjamin Herrenschmidt, IBM Corp.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/cpumask.h>
15 #include <linux/spinlock.h>
16 #include <linux/types.h>
18 #include <asm/cputhreads.h>
19 #include <asm/reg_a2.h>
26 static scom_map_t
wsp_scom_map(struct device_node
*dev
, u64 reg
, u64 count
)
31 if (!of_get_property(dev
, "scom-controller", NULL
)) {
32 pr_err("%s: device %s is not a SCOM controller\n",
33 __func__
, dev
->full_name
);
34 return SCOM_MAP_INVALID
;
37 if (of_address_to_resource(dev
, 0, &r
)) {
38 pr_debug("Failed to find SCOM controller address\n");
42 /* Transform the SCOM address into an XSCOM offset */
43 xscom_addr
= ((reg
& 0x7f000000) >> 1) | ((reg
& 0xfffff) << 3);
45 return (scom_map_t
)ioremap(r
.start
+ xscom_addr
, count
<< 3);
48 static void wsp_scom_unmap(scom_map_t map
)
53 static u64
wsp_scom_read(scom_map_t map
, u32 reg
)
55 u64 __iomem
*addr
= (u64 __iomem
*)map
;
57 return in_be64(addr
+ reg
);
60 static void wsp_scom_write(scom_map_t map
, u32 reg
, u64 value
)
62 u64 __iomem
*addr
= (u64 __iomem
*)map
;
64 return out_be64(addr
+ reg
, value
);
67 static const struct scom_controller wsp_scom_controller
= {
69 .unmap
= wsp_scom_unmap
,
70 .read
= wsp_scom_read
,
71 .write
= wsp_scom_write
74 void scom_init_wsp(void)
76 scom_init(&wsp_scom_controller
);