diff options
Diffstat (limited to 'arch/blackfin/mach-bf533/boards')
-rw-r--r-- | arch/blackfin/mach-bf533/boards/H8606.c | 10 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/blackstamp.c | 4 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/cm_bf533.c | 10 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/ezkit.c | 12 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/ip0x.c | 2 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/stamp.c | 19 |
6 files changed, 33 insertions, 24 deletions
diff --git a/arch/blackfin/mach-bf533/boards/H8606.c b/arch/blackfin/mach-bf533/boards/H8606.c index 175371af0692..2ce7b16faee1 100644 --- a/arch/blackfin/mach-bf533/boards/H8606.c +++ b/arch/blackfin/mach-bf533/boards/H8606.c | |||
@@ -171,7 +171,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = { | |||
171 | }; | 171 | }; |
172 | #endif | 172 | #endif |
173 | 173 | ||
174 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 174 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
175 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { | 175 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { |
176 | .enable_dma = 0, | 176 | .enable_dma = 0, |
177 | .bits_per_word = 16, | 177 | .bits_per_word = 16, |
@@ -206,12 +206,12 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
206 | }, | 206 | }, |
207 | #endif | 207 | #endif |
208 | 208 | ||
209 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 209 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
210 | { | 210 | { |
211 | .modalias = "ad1836", | 211 | .modalias = "ad183x", |
212 | .max_speed_hz = 16, | 212 | .max_speed_hz = 16, |
213 | .bus_num = 1, | 213 | .bus_num = 1, |
214 | .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT, | 214 | .chip_select = 4, |
215 | .controller_data = &ad1836_spi_chip_info, | 215 | .controller_data = &ad1836_spi_chip_info, |
216 | }, | 216 | }, |
217 | #endif | 217 | #endif |
@@ -347,6 +347,7 @@ static struct plat_serial8250_port serial8250_platform_data [] = { | |||
347 | .membase = (void *)0x20200000, | 347 | .membase = (void *)0x20200000, |
348 | .mapbase = 0x20200000, | 348 | .mapbase = 0x20200000, |
349 | .irq = IRQ_PF8, | 349 | .irq = IRQ_PF8, |
350 | .irqflags = IRQF_TRIGGER_HIGH, | ||
350 | .flags = UPF_BOOT_AUTOCONF | UART_CONFIG_TYPE, | 351 | .flags = UPF_BOOT_AUTOCONF | UART_CONFIG_TYPE, |
351 | .iotype = UPIO_MEM, | 352 | .iotype = UPIO_MEM, |
352 | .regshift = 1, | 353 | .regshift = 1, |
@@ -355,6 +356,7 @@ static struct plat_serial8250_port serial8250_platform_data [] = { | |||
355 | .membase = (void *)0x20200010, | 356 | .membase = (void *)0x20200010, |
356 | .mapbase = 0x20200010, | 357 | .mapbase = 0x20200010, |
357 | .irq = IRQ_PF8, | 358 | .irq = IRQ_PF8, |
359 | .irqflags = IRQF_TRIGGER_HIGH, | ||
358 | .flags = UPF_BOOT_AUTOCONF | UART_CONFIG_TYPE, | 360 | .flags = UPF_BOOT_AUTOCONF | UART_CONFIG_TYPE, |
359 | .iotype = UPIO_MEM, | 361 | .iotype = UPIO_MEM, |
360 | .regshift = 1, | 362 | .regshift = 1, |
diff --git a/arch/blackfin/mach-bf533/boards/blackstamp.c b/arch/blackfin/mach-bf533/boards/blackstamp.c index 84a06f677dff..20c102285bef 100644 --- a/arch/blackfin/mach-bf533/boards/blackstamp.c +++ b/arch/blackfin/mach-bf533/boards/blackstamp.c | |||
@@ -368,8 +368,8 @@ static struct platform_device bfin_device_gpiokeys = { | |||
368 | #include <linux/i2c-gpio.h> | 368 | #include <linux/i2c-gpio.h> |
369 | 369 | ||
370 | static struct i2c_gpio_platform_data i2c_gpio_data = { | 370 | static struct i2c_gpio_platform_data i2c_gpio_data = { |
371 | .sda_pin = 8, | 371 | .sda_pin = GPIO_PF8, |
372 | .scl_pin = 9, | 372 | .scl_pin = GPIO_PF9, |
373 | .sda_is_open_drain = 0, | 373 | .sda_is_open_drain = 0, |
374 | .scl_is_open_drain = 0, | 374 | .scl_is_open_drain = 0, |
375 | .udelay = 40, | 375 | .udelay = 40, |
diff --git a/arch/blackfin/mach-bf533/boards/cm_bf533.c b/arch/blackfin/mach-bf533/boards/cm_bf533.c index fdcde61906dc..adbe62a81e25 100644 --- a/arch/blackfin/mach-bf533/boards/cm_bf533.c +++ b/arch/blackfin/mach-bf533/boards/cm_bf533.c | |||
@@ -71,7 +71,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = { | |||
71 | }; | 71 | }; |
72 | #endif | 72 | #endif |
73 | 73 | ||
74 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 74 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
75 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { | 75 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { |
76 | .enable_dma = 0, | 76 | .enable_dma = 0, |
77 | .bits_per_word = 16, | 77 | .bits_per_word = 16, |
@@ -110,12 +110,12 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
110 | }, | 110 | }, |
111 | #endif | 111 | #endif |
112 | 112 | ||
113 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 113 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
114 | { | 114 | { |
115 | .modalias = "ad1836", | 115 | .modalias = "ad183x", |
116 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ | 116 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
117 | .bus_num = 0, | 117 | .bus_num = 0, |
118 | .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT, | 118 | .chip_select = 4, |
119 | .controller_data = &ad1836_spi_chip_info, | 119 | .controller_data = &ad1836_spi_chip_info, |
120 | }, | 120 | }, |
121 | #endif | 121 | #endif |
@@ -400,7 +400,7 @@ static struct resource isp1362_hcd_resources[] = { | |||
400 | }, { | 400 | }, { |
401 | .start = IRQ_PF4, | 401 | .start = IRQ_PF4, |
402 | .end = IRQ_PF4, | 402 | .end = IRQ_PF4, |
403 | .flags = IORESOURCE_IRQ, | 403 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE, |
404 | }, | 404 | }, |
405 | }; | 405 | }; |
406 | 406 | ||
diff --git a/arch/blackfin/mach-bf533/boards/ezkit.c b/arch/blackfin/mach-bf533/boards/ezkit.c index 739773cb7fc6..a1cb8e7c1010 100644 --- a/arch/blackfin/mach-bf533/boards/ezkit.c +++ b/arch/blackfin/mach-bf533/boards/ezkit.c | |||
@@ -222,7 +222,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = { | |||
222 | }; | 222 | }; |
223 | #endif | 223 | #endif |
224 | 224 | ||
225 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 225 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
226 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { | 226 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { |
227 | .enable_dma = 0, | 227 | .enable_dma = 0, |
228 | .bits_per_word = 16, | 228 | .bits_per_word = 16, |
@@ -261,12 +261,12 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
261 | }, | 261 | }, |
262 | #endif | 262 | #endif |
263 | 263 | ||
264 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 264 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
265 | { | 265 | { |
266 | .modalias = "ad1836", | 266 | .modalias = "ad183x", |
267 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ | 267 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
268 | .bus_num = 0, | 268 | .bus_num = 0, |
269 | .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT, | 269 | .chip_select = 4, |
270 | .controller_data = &ad1836_spi_chip_info, | 270 | .controller_data = &ad1836_spi_chip_info, |
271 | }, | 271 | }, |
272 | #endif | 272 | #endif |
@@ -422,8 +422,8 @@ static struct platform_device bfin_device_gpiokeys = { | |||
422 | #include <linux/i2c-gpio.h> | 422 | #include <linux/i2c-gpio.h> |
423 | 423 | ||
424 | static struct i2c_gpio_platform_data i2c_gpio_data = { | 424 | static struct i2c_gpio_platform_data i2c_gpio_data = { |
425 | .sda_pin = 1, | 425 | .sda_pin = GPIO_PF1, |
426 | .scl_pin = 0, | 426 | .scl_pin = GPIO_PF0, |
427 | .sda_is_open_drain = 0, | 427 | .sda_is_open_drain = 0, |
428 | .scl_is_open_drain = 0, | 428 | .scl_is_open_drain = 0, |
429 | .udelay = 40, | 429 | .udelay = 40, |
diff --git a/arch/blackfin/mach-bf533/boards/ip0x.c b/arch/blackfin/mach-bf533/boards/ip0x.c index b8474cac6b03..5ba4b02a12eb 100644 --- a/arch/blackfin/mach-bf533/boards/ip0x.c +++ b/arch/blackfin/mach-bf533/boards/ip0x.c | |||
@@ -232,7 +232,7 @@ static struct resource isp1362_hcd_resources[] = { | |||
232 | },{ | 232 | },{ |
233 | .start = IRQ_PF11, | 233 | .start = IRQ_PF11, |
234 | .end = IRQ_PF11, | 234 | .end = IRQ_PF11, |
235 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, | 235 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE, |
236 | }, | 236 | }, |
237 | }; | 237 | }; |
238 | 238 | ||
diff --git a/arch/blackfin/mach-bf533/boards/stamp.c b/arch/blackfin/mach-bf533/boards/stamp.c index 29c219eff2ff..b3b1cdea2703 100644 --- a/arch/blackfin/mach-bf533/boards/stamp.c +++ b/arch/blackfin/mach-bf533/boards/stamp.c | |||
@@ -185,7 +185,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = { | |||
185 | }; | 185 | }; |
186 | #endif | 186 | #endif |
187 | 187 | ||
188 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 188 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
189 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { | 189 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { |
190 | .enable_dma = 0, | 190 | .enable_dma = 0, |
191 | .bits_per_word = 16, | 191 | .bits_per_word = 16, |
@@ -252,13 +252,15 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
252 | }, | 252 | }, |
253 | #endif | 253 | #endif |
254 | 254 | ||
255 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) | 255 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
256 | { | 256 | { |
257 | .modalias = "ad1836", | 257 | .modalias = "ad183x", |
258 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ | 258 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
259 | .bus_num = 0, | 259 | .bus_num = 0, |
260 | .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT, | 260 | .chip_select = 4, |
261 | .platform_data = "ad1836", /* only includes chip name for the moment */ | ||
261 | .controller_data = &ad1836_spi_chip_info, | 262 | .controller_data = &ad1836_spi_chip_info, |
263 | .mode = SPI_MODE_3, | ||
262 | }, | 264 | }, |
263 | #endif | 265 | #endif |
264 | 266 | ||
@@ -495,8 +497,8 @@ static struct platform_device bfin_device_gpiokeys = { | |||
495 | #include <linux/i2c-gpio.h> | 497 | #include <linux/i2c-gpio.h> |
496 | 498 | ||
497 | static struct i2c_gpio_platform_data i2c_gpio_data = { | 499 | static struct i2c_gpio_platform_data i2c_gpio_data = { |
498 | .sda_pin = 2, | 500 | .sda_pin = GPIO_PF2, |
499 | .scl_pin = 3, | 501 | .scl_pin = GPIO_PF3, |
500 | .sda_is_open_drain = 0, | 502 | .sda_is_open_drain = 0, |
501 | .scl_is_open_drain = 0, | 503 | .scl_is_open_drain = 0, |
502 | .udelay = 40, | 504 | .udelay = 40, |
@@ -534,6 +536,11 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | |||
534 | I2C_BOARD_INFO("bfin-adv7393", 0x2B), | 536 | I2C_BOARD_INFO("bfin-adv7393", 0x2B), |
535 | }, | 537 | }, |
536 | #endif | 538 | #endif |
539 | #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) | ||
540 | { | ||
541 | I2C_BOARD_INFO("ad5252", 0x2f), | ||
542 | }, | ||
543 | #endif | ||
537 | }; | 544 | }; |
538 | 545 | ||
539 | static const unsigned int cclk_vlev_datasheet[] = | 546 | static const unsigned int cclk_vlev_datasheet[] = |