aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/kernel/bfin_gpio.c
diff options
context:
space:
mode:
authorMichael Hennerich <michael.hennerich@analog.com>2007-08-03 05:48:09 -0400
committerBryan Wu <bryan.wu@analog.com>2007-08-03 05:48:09 -0400
commit8c61362377970cd35cc37960b5cbed03cecd57e7 (patch)
tree10eae56e854776831c5de318b2c30f3e3a62c057 /arch/blackfin/kernel/bfin_gpio.c
parent1708268f7ee5177c35826f047b91d7324f099ab0 (diff)
Blackfin arch: Some cosmetics based on LKML feedback from Joe Perches
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Cc: Joe Perches <joe@perches.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch/blackfin/kernel/bfin_gpio.c')
-rw-r--r--arch/blackfin/kernel/bfin_gpio.c102
1 files changed, 66 insertions, 36 deletions
diff --git a/arch/blackfin/kernel/bfin_gpio.c b/arch/blackfin/kernel/bfin_gpio.c
index 979cf79d3799..0182ce1fc4fb 100644
--- a/arch/blackfin/kernel/bfin_gpio.c
+++ b/arch/blackfin/kernel/bfin_gpio.c
@@ -118,9 +118,14 @@ static struct gpio_port_t *gpio_bankb[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
118 118
119static unsigned short reserved_gpio_map[gpio_bank(MAX_BLACKFIN_GPIOS)]; 119static unsigned short reserved_gpio_map[gpio_bank(MAX_BLACKFIN_GPIOS)];
120static unsigned short reserved_peri_map[gpio_bank(MAX_BLACKFIN_GPIOS + 16)]; 120static unsigned short reserved_peri_map[gpio_bank(MAX_BLACKFIN_GPIOS + 16)];
121char *str_ident = NULL;
122 121
123#define RESOURCE_LABEL_SIZE 16 122#define MAX_RESOURCES 256
123#define RESOURCE_LABEL_SIZE 16
124
125struct str_ident {
126 char name[RESOURCE_LABEL_SIZE];
127} *str_ident;
128
124 129
125#ifdef CONFIG_PM 130#ifdef CONFIG_PM
126static unsigned short wakeup_map[gpio_bank(MAX_BLACKFIN_GPIOS)]; 131static unsigned short wakeup_map[gpio_bank(MAX_BLACKFIN_GPIOS)];
@@ -152,10 +157,9 @@ static void set_label(unsigned short ident, const char *label)
152{ 157{
153 158
154 if (label && str_ident) { 159 if (label && str_ident) {
155 strncpy(str_ident + ident * RESOURCE_LABEL_SIZE, label, 160 strncpy(str_ident[ident].name, label,
156 RESOURCE_LABEL_SIZE); 161 RESOURCE_LABEL_SIZE);
157 str_ident[ident * RESOURCE_LABEL_SIZE + 162 str_ident[ident].name[RESOURCE_LABEL_SIZE - 1] = 0;
158 RESOURCE_LABEL_SIZE - 1] = 0;
159 } 163 }
160} 164}
161 165
@@ -164,14 +168,13 @@ static char *get_label(unsigned short ident)
164 if (!str_ident) 168 if (!str_ident)
165 return "UNKNOWN"; 169 return "UNKNOWN";
166 170
167 return (str_ident[ident * RESOURCE_LABEL_SIZE] ? 171 return (*str_ident[ident].name ? str_ident[ident].name : "UNKNOWN");
168 (str_ident + ident * RESOURCE_LABEL_SIZE) : "UNKNOWN");
169} 172}
170 173
171static int cmp_label(unsigned short ident, const char *label) 174static int cmp_label(unsigned short ident, const char *label)
172{ 175{
173 if (label && str_ident) 176 if (label && str_ident)
174 return strncmp(str_ident + ident * RESOURCE_LABEL_SIZE, 177 return strncmp(str_ident[ident].name,
175 label, strlen(label)); 178 label, strlen(label));
176 else 179 else
177 return -EINVAL; 180 return -EINVAL;
@@ -194,37 +197,63 @@ static void port_setup(unsigned short gpio, unsigned short usage)
194 197
195#ifdef BF537_FAMILY 198#ifdef BF537_FAMILY
196 199
197#define PMUX_LUT_RES 0 200static struct {
198#define PMUX_LUT_OFFSET 1 201 unsigned short res;
199#define PMUX_LUT_ENTRIES 41 202 unsigned short offset;
200#define PMUX_LUT_SIZE 2 203} port_mux_lut[] = {
201 204 {.res = P_PPI0_D13, .offset = 11},
202static unsigned short port_mux_lut[PMUX_LUT_ENTRIES][PMUX_LUT_SIZE] = { 205 {.res = P_PPI0_D14, .offset = 11},
203 {P_PPI0_D13, 11}, {P_PPI0_D14, 11}, {P_PPI0_D15, 11}, 206 {.res = P_PPI0_D15, .offset = 11},
204 {P_SPORT1_TFS, 11}, {P_SPORT1_TSCLK, 11}, {P_SPORT1_DTPRI, 11}, 207 {.res = P_SPORT1_TFS, .offset = 11},
205 {P_PPI0_D10, 10}, {P_PPI0_D11, 10}, {P_PPI0_D12, 10}, 208 {.res = P_SPORT1_TSCLK, .offset = 11},
206 {P_SPORT1_RSCLK, 10}, {P_SPORT1_RFS, 10}, {P_SPORT1_DRPRI, 10}, 209 {.res = P_SPORT1_DTPRI, .offset = 11},
207 {P_PPI0_D8, 9}, {P_PPI0_D9, 9}, {P_SPORT1_DRSEC, 9}, 210 {.res = P_PPI0_D10, .offset = 10},
208 {P_SPORT1_DTSEC, 9}, {P_TMR2, 8}, {P_PPI0_FS3, 8}, {P_TMR3, 7}, 211 {.res = P_PPI0_D11, .offset = 10},
209 {P_SPI0_SSEL4, 7}, {P_TMR4, 6}, {P_SPI0_SSEL5, 6}, {P_TMR5, 5}, 212 {.res = P_PPI0_D12, .offset = 10},
210 {P_SPI0_SSEL6, 5}, {P_UART1_RX, 4}, {P_UART1_TX, 4}, {P_TMR6, 4}, 213 {.res = P_SPORT1_RSCLK, .offset = 10},
211 {P_TMR7, 4}, {P_UART0_RX, 3}, {P_UART0_TX, 3}, {P_DMAR0, 3}, 214 {.res = P_SPORT1_RFS, .offset = 10},
212 {P_DMAR1, 3}, {P_SPORT0_DTSEC, 1}, {P_SPORT0_DRSEC, 1}, 215 {.res = P_SPORT1_DRPRI, .offset = 10},
213 {P_CAN0_RX, 1}, {P_CAN0_TX, 1}, {P_SPI0_SSEL7, 1}, 216 {.res = P_PPI0_D8, .offset = 9},
214 {P_SPORT0_TFS, 0}, {P_SPORT0_DTPRI, 0}, {P_SPI0_SSEL2, 0}, 217 {.res = P_PPI0_D9, .offset = 9},
215 {P_SPI0_SSEL3, 0} 218 {.res = P_SPORT1_DRSEC, .offset = 9},
219 {.res = P_SPORT1_DTSEC, .offset = 9},
220 {.res = P_TMR2, .offset = 8},
221 {.res = P_PPI0_FS3, .offset = 8},
222 {.res = P_TMR3, .offset = 7},
223 {.res = P_SPI0_SSEL4, .offset = 7},
224 {.res = P_TMR4, .offset = 6},
225 {.res = P_SPI0_SSEL5, .offset = 6},
226 {.res = P_TMR5, .offset = 5},
227 {.res = P_SPI0_SSEL6, .offset = 5},
228 {.res = P_UART1_RX, .offset = 4},
229 {.res = P_UART1_TX, .offset = 4},
230 {.res = P_TMR6, .offset = 4},
231 {.res = P_TMR7, .offset = 4},
232 {.res = P_UART0_RX, .offset = 3},
233 {.res = P_UART0_TX, .offset = 3},
234 {.res = P_DMAR0, .offset = 3},
235 {.res = P_DMAR1, .offset = 3},
236 {.res = P_SPORT0_DTSEC, .offset = 1},
237 {.res = P_SPORT0_DRSEC, .offset = 1},
238 {.res = P_CAN0_RX, .offset = 1},
239 {.res = P_CAN0_TX, .offset = 1},
240 {.res = P_SPI0_SSEL7, .offset = 1},
241 {.res = P_SPORT0_TFS, .offset = 0},
242 {.res = P_SPORT0_DTPRI, .offset = 0},
243 {.res = P_SPI0_SSEL2, .offset = 0},
244 {.res = P_SPI0_SSEL3, .offset = 0},
216}; 245};
217 246
218static void portmux_setup(unsigned short per, unsigned short function) 247static void portmux_setup(unsigned short per, unsigned short function)
219{ 248{
220 u16 y, muxreg, offset; 249 u16 y, offset, muxreg;
221 250
222 for (y = 0; y < PMUX_LUT_ENTRIES; y++) { 251 for (y = 0; y < ARRAY_SIZE(port_mux_lut); y++) {
223 if (port_mux_lut[y][PMUX_LUT_RES] == per) { 252 if (port_mux_lut[y].res == per) {
224 253
225 /* SET PORTMUX REG */ 254 /* SET PORTMUX REG */
226 255
227 offset = port_mux_lut[y][PMUX_LUT_OFFSET]; 256 offset = port_mux_lut[y].offset;
228 muxreg = bfin_read_PORT_MUX(); 257 muxreg = bfin_read_PORT_MUX();
229 258
230 if (offset != 1) { 259 if (offset != 1) {
@@ -262,17 +291,18 @@ static void default_gpio(unsigned short gpio)
262 291
263static int __init bfin_gpio_init(void) 292static int __init bfin_gpio_init(void)
264{ 293{
265 294 str_ident = kcalloc(MAX_RESOURCES,
266 str_ident = kzalloc(RESOURCE_LABEL_SIZE * 256, GFP_KERNEL); 295 sizeof(struct str_ident), GFP_KERNEL);
267 if (!str_ident) 296 if (str_ident == NULL)
268 return -ENOMEM; 297 return -ENOMEM;
269 298
299 memset(str_ident, 0, MAX_RESOURCES * sizeof(struct str_ident));
300
270 printk(KERN_INFO "Blackfin GPIO Controller\n"); 301 printk(KERN_INFO "Blackfin GPIO Controller\n");
271 302
272 return 0; 303 return 0;
273 304
274} 305}
275
276arch_initcall(bfin_gpio_init); 306arch_initcall(bfin_gpio_init);
277 307
278 308
@@ -680,7 +710,7 @@ int peripheral_request(unsigned short per, const char *label)
680 710
681 printk(KERN_ERR 711 printk(KERN_ERR
682 "%s: Peripheral %d function %d is already" 712 "%s: Peripheral %d function %d is already"
683 "reserved by %s !\n", 713 " reserved by %s !\n",
684 __FUNCTION__, ident, P_FUNCT2MUX(per), 714 __FUNCTION__, ident, P_FUNCT2MUX(per),
685 get_label(ident)); 715 get_label(ident));
686 dump_stack(); 716 dump_stack();