[POWERPC] cell: update Cell BE register definitions
[linux-2.6] / arch / powerpc / platforms / cell / cbe_regs.c
1 /*
2  * cbe_regs.c
3  *
4  * Accessor routines for the various MMIO register blocks of the CBE
5  *
6  * (c) 2006 Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
7  */
8
9 #include <linux/percpu.h>
10 #include <linux/types.h>
11 #include <linux/module.h>
12
13 #include <asm/io.h>
14 #include <asm/pgtable.h>
15 #include <asm/prom.h>
16 #include <asm/ptrace.h>
17
18 #include "cbe_regs.h"
19
20 /*
21  * Current implementation uses "cpu" nodes. We build our own mapping
22  * array of cpu numbers to cpu nodes locally for now to allow interrupt
23  * time code to have a fast path rather than call of_get_cpu_node(). If
24  * we implement cpu hotplug, we'll have to install an appropriate norifier
25  * in order to release references to the cpu going away
26  */
27 static struct cbe_regs_map
28 {
29         struct device_node *cpu_node;
30         struct cbe_pmd_regs __iomem *pmd_regs;
31         struct cbe_iic_regs __iomem *iic_regs;
32         struct cbe_mic_tm_regs __iomem *mic_tm_regs;
33 } cbe_regs_maps[MAX_CBE];
34 static int cbe_regs_map_count;
35
36 static struct cbe_thread_map
37 {
38         struct device_node *cpu_node;
39         struct cbe_regs_map *regs;
40 } cbe_thread_map[NR_CPUS];
41
42 static struct cbe_regs_map *cbe_find_map(struct device_node *np)
43 {
44         int i;
45         struct device_node *tmp_np;
46
47         if (strcasecmp(np->type, "spe") == 0) {
48                 if (np->data == NULL) {
49                         /* walk up path until cpu node was found */
50                         tmp_np = np->parent;
51                         while (tmp_np != NULL && strcasecmp(tmp_np->type, "cpu") != 0)
52                                 tmp_np = tmp_np->parent;
53
54                         np->data = cbe_find_map(tmp_np);
55                 }
56                 return np->data;
57         }
58
59         for (i = 0; i < cbe_regs_map_count; i++)
60                 if (cbe_regs_maps[i].cpu_node == np)
61                         return &cbe_regs_maps[i];
62         return NULL;
63 }
64
65 struct cbe_pmd_regs __iomem *cbe_get_pmd_regs(struct device_node *np)
66 {
67         struct cbe_regs_map *map = cbe_find_map(np);
68         if (map == NULL)
69                 return NULL;
70         return map->pmd_regs;
71 }
72 EXPORT_SYMBOL_GPL(cbe_get_pmd_regs);
73
74 struct cbe_pmd_regs __iomem *cbe_get_cpu_pmd_regs(int cpu)
75 {
76         struct cbe_regs_map *map = cbe_thread_map[cpu].regs;
77         if (map == NULL)
78                 return NULL;
79         return map->pmd_regs;
80 }
81 EXPORT_SYMBOL_GPL(cbe_get_cpu_pmd_regs);
82
83 struct cbe_iic_regs __iomem *cbe_get_iic_regs(struct device_node *np)
84 {
85         struct cbe_regs_map *map = cbe_find_map(np);
86         if (map == NULL)
87                 return NULL;
88         return map->iic_regs;
89 }
90
91 struct cbe_iic_regs __iomem *cbe_get_cpu_iic_regs(int cpu)
92 {
93         struct cbe_regs_map *map = cbe_thread_map[cpu].regs;
94         if (map == NULL)
95                 return NULL;
96         return map->iic_regs;
97 }
98
99 struct cbe_mic_tm_regs __iomem *cbe_get_mic_tm_regs(struct device_node *np)
100 {
101         struct cbe_regs_map *map = cbe_find_map(np);
102         if (map == NULL)
103                 return NULL;
104         return map->mic_tm_regs;
105 }
106
107 struct cbe_mic_tm_regs __iomem *cbe_get_cpu_mic_tm_regs(int cpu)
108 {
109         struct cbe_regs_map *map = cbe_thread_map[cpu].regs;
110         if (map == NULL)
111                 return NULL;
112         return map->mic_tm_regs;
113 }
114 EXPORT_SYMBOL_GPL(cbe_get_cpu_mic_tm_regs);
115
116
117 void __init cbe_regs_init(void)
118 {
119         int i;
120         struct device_node *cpu;
121
122         /* Build local fast map of CPUs */
123         for_each_possible_cpu(i)
124                 cbe_thread_map[i].cpu_node = of_get_cpu_node(i, NULL);
125
126         /* Find maps for each device tree CPU */
127         for_each_node_by_type(cpu, "cpu") {
128                 struct cbe_regs_map *map = &cbe_regs_maps[cbe_regs_map_count++];
129
130                 /* That hack must die die die ! */
131                 const struct address_prop {
132                         unsigned long address;
133                         unsigned int len;
134                 } __attribute__((packed)) *prop;
135
136
137                 if (cbe_regs_map_count > MAX_CBE) {
138                         printk(KERN_ERR "cbe_regs: More BE chips than supported"
139                                "!\n");
140                         cbe_regs_map_count--;
141                         return;
142                 }
143                 map->cpu_node = cpu;
144                 for_each_possible_cpu(i)
145                         if (cbe_thread_map[i].cpu_node == cpu)
146                                 cbe_thread_map[i].regs = map;
147
148                 prop = get_property(cpu, "pervasive", NULL);
149                 if (prop != NULL)
150                         map->pmd_regs = ioremap(prop->address, prop->len);
151
152                 prop = get_property(cpu, "iic", NULL);
153                 if (prop != NULL)
154                         map->iic_regs = ioremap(prop->address, prop->len);
155
156                 prop = (struct address_prop *)get_property(cpu, "mic-tm",
157                                                            NULL);
158                 if (prop != NULL)
159                         map->mic_tm_regs = ioremap(prop->address, prop->len);
160         }
161 }
162