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