Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2010 |
| 3 | * |
| 4 | * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson |
| 5 | * License terms: GNU General Public License (GPL), version 2. |
| 6 | */ |
| 7 | |
| 8 | #ifndef __DEVICES_DB8500_H |
| 9 | #define __DEVICES_DB8500_H |
| 10 | |
| 11 | #include "devices-common.h" |
| 12 | |
| 13 | struct ske_keypad_platform_data; |
| 14 | struct pl022_ssp_controller; |
| 15 | |
| 16 | static inline struct platform_device * |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 17 | db8500_add_ske_keypad(struct device *parent, |
| 18 | struct ske_keypad_platform_data *pdata, |
| 19 | size_t size) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 20 | { |
Lee Jones | 3510ec6 | 2012-02-06 11:22:26 -0800 | [diff] [blame] | 21 | struct resource resources[] = { |
| 22 | DEFINE_RES_MEM(U8500_SKE_BASE, SZ_4K), |
| 23 | DEFINE_RES_IRQ(IRQ_DB8500_KB), |
| 24 | }; |
| 25 | |
| 26 | return platform_device_register_resndata(parent, "nmk-ske-keypad", -1, |
| 27 | resources, 2, pdata, size); |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | static inline struct amba_device * |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 31 | db8500_add_ssp(struct device *parent, const char *name, resource_size_t base, |
| 32 | int irq, struct pl022_ssp_controller *pdata) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 33 | { |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 34 | return dbx500_add_amba_device(parent, name, base, irq, pdata, 0); |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 38 | #define db8500_add_i2c0(parent, pdata) \ |
| 39 | dbx500_add_i2c(parent, 0, U8500_I2C0_BASE, IRQ_DB8500_I2C0, pdata) |
| 40 | #define db8500_add_i2c1(parent, pdata) \ |
| 41 | dbx500_add_i2c(parent, 1, U8500_I2C1_BASE, IRQ_DB8500_I2C1, pdata) |
| 42 | #define db8500_add_i2c2(parent, pdata) \ |
| 43 | dbx500_add_i2c(parent, 2, U8500_I2C2_BASE, IRQ_DB8500_I2C2, pdata) |
| 44 | #define db8500_add_i2c3(parent, pdata) \ |
| 45 | dbx500_add_i2c(parent, 3, U8500_I2C3_BASE, IRQ_DB8500_I2C3, pdata) |
| 46 | #define db8500_add_i2c4(parent, pdata) \ |
| 47 | dbx500_add_i2c(parent, 4, U8500_I2C4_BASE, IRQ_DB8500_I2C4, pdata) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 48 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 49 | #define db8500_add_msp0_i2s(parent, pdata) \ |
| 50 | dbx500_add_msp_i2s(parent, 0, U8500_MSP0_BASE, IRQ_DB8500_MSP0, pdata) |
| 51 | #define db8500_add_msp1_i2s(parent, pdata) \ |
| 52 | dbx500_add_msp_i2s(parent, 1, U8500_MSP1_BASE, IRQ_DB8500_MSP1, pdata) |
| 53 | #define db8500_add_msp2_i2s(parent, pdata) \ |
| 54 | dbx500_add_msp_i2s(parent, 2, U8500_MSP2_BASE, IRQ_DB8500_MSP2, pdata) |
| 55 | #define db8500_add_msp3_i2s(parent, pdata) \ |
| 56 | dbx500_add_msp_i2s(parent, 3, U8500_MSP3_BASE, IRQ_DB8500_MSP1, pdata) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 57 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 58 | #define db8500_add_msp0_spi(parent, pdata) \ |
| 59 | dbx500_add_msp_spi(parent, "msp0", U8500_MSP0_BASE, \ |
| 60 | IRQ_DB8500_MSP0, pdata) |
| 61 | #define db8500_add_msp1_spi(parent, pdata) \ |
| 62 | dbx500_add_msp_spi(parent, "msp1", U8500_MSP1_BASE, \ |
| 63 | IRQ_DB8500_MSP1, pdata) |
| 64 | #define db8500_add_msp2_spi(parent, pdata) \ |
| 65 | dbx500_add_msp_spi(parent, "msp2", U8500_MSP2_BASE, \ |
| 66 | IRQ_DB8500_MSP2, pdata) |
| 67 | #define db8500_add_msp3_spi(parent, pdata) \ |
| 68 | dbx500_add_msp_spi(parent, "msp3", U8500_MSP3_BASE, \ |
| 69 | IRQ_DB8500_MSP1, pdata) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 70 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 71 | #define db8500_add_rtc(parent) \ |
| 72 | dbx500_add_rtc(parent, U8500_RTC_BASE, IRQ_DB8500_RTC); |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 73 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 74 | #define db8500_add_usb(parent, rx_cfg, tx_cfg) \ |
| 75 | ux500_add_usb(parent, U8500_USBOTG_BASE, \ |
| 76 | IRQ_DB8500_USBOTG, rx_cfg, tx_cfg) |
Mian Yousaf Kaukab | 6f3f3c3 | 2011-01-21 18:21:50 +0100 | [diff] [blame] | 77 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 78 | #define db8500_add_sdi0(parent, pdata, pid) \ |
| 79 | dbx500_add_sdi(parent, "sdi0", U8500_SDI0_BASE, \ |
| 80 | IRQ_DB8500_SDMMC0, pdata, pid) |
| 81 | #define db8500_add_sdi1(parent, pdata, pid) \ |
| 82 | dbx500_add_sdi(parent, "sdi1", U8500_SDI1_BASE, \ |
| 83 | IRQ_DB8500_SDMMC1, pdata, pid) |
| 84 | #define db8500_add_sdi2(parent, pdata, pid) \ |
| 85 | dbx500_add_sdi(parent, "sdi2", U8500_SDI2_BASE, \ |
| 86 | IRQ_DB8500_SDMMC2, pdata, pid) |
| 87 | #define db8500_add_sdi3(parent, pdata, pid) \ |
| 88 | dbx500_add_sdi(parent, "sdi3", U8500_SDI3_BASE, \ |
| 89 | IRQ_DB8500_SDMMC3, pdata, pid) |
| 90 | #define db8500_add_sdi4(parent, pdata, pid) \ |
| 91 | dbx500_add_sdi(parent, "sdi4", U8500_SDI4_BASE, \ |
| 92 | IRQ_DB8500_SDMMC4, pdata, pid) |
| 93 | #define db8500_add_sdi5(parent, pdata, pid) \ |
| 94 | dbx500_add_sdi(parent, "sdi5", U8500_SDI5_BASE, \ |
| 95 | IRQ_DB8500_SDMMC5, pdata, pid) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 96 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 97 | #define db8500_add_ssp0(parent, pdata) \ |
| 98 | db8500_add_ssp(parent, "ssp0", U8500_SSP0_BASE, \ |
| 99 | IRQ_DB8500_SSP0, pdata) |
| 100 | #define db8500_add_ssp1(parent, pdata) \ |
| 101 | db8500_add_ssp(parent, "ssp1", U8500_SSP1_BASE, \ |
| 102 | IRQ_DB8500_SSP1, pdata) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 103 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 104 | #define db8500_add_spi0(parent, pdata) \ |
| 105 | dbx500_add_spi(parent, "spi0", U8500_SPI0_BASE, \ |
| 106 | IRQ_DB8500_SPI0, pdata, 0) |
| 107 | #define db8500_add_spi1(parent, pdata) \ |
| 108 | dbx500_add_spi(parent, "spi1", U8500_SPI1_BASE, \ |
| 109 | IRQ_DB8500_SPI1, pdata, 0) |
| 110 | #define db8500_add_spi2(parent, pdata) \ |
| 111 | dbx500_add_spi(parent, "spi2", U8500_SPI2_BASE, \ |
| 112 | IRQ_DB8500_SPI2, pdata, 0) |
| 113 | #define db8500_add_spi3(parent, pdata) \ |
| 114 | dbx500_add_spi(parent, "spi3", U8500_SPI3_BASE, \ |
| 115 | IRQ_DB8500_SPI3, pdata, 0) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 116 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 117 | #define db8500_add_uart0(parent, pdata) \ |
| 118 | dbx500_add_uart(parent, "uart0", U8500_UART0_BASE, \ |
| 119 | IRQ_DB8500_UART0, pdata) |
| 120 | #define db8500_add_uart1(parent, pdata) \ |
| 121 | dbx500_add_uart(parent, "uart1", U8500_UART1_BASE, \ |
| 122 | IRQ_DB8500_UART1, pdata) |
| 123 | #define db8500_add_uart2(parent, pdata) \ |
| 124 | dbx500_add_uart(parent, "uart2", U8500_UART2_BASE, \ |
| 125 | IRQ_DB8500_UART2, pdata) |
Rabin Vincent | fbf1ead | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 126 | |
| 127 | #endif |