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_DB5500_H 9 #define __DEVICES_DB5500_H 10 11 #include "devices-common.h" 12 13 #define db5500_add_i2c1(pdata) \ 14 dbx500_add_i2c(1, U5500_I2C1_BASE, IRQ_DB5500_I2C1, pdata) 15 #define db5500_add_i2c2(pdata) \ 16 dbx500_add_i2c(2, U5500_I2C2_BASE, IRQ_DB5500_I2C2, pdata) 17 #define db5500_add_i2c3(pdata) \ 18 dbx500_add_i2c(3, U5500_I2C3_BASE, IRQ_DB5500_I2C3, pdata) 19 20 #define db5500_add_msp0_i2s(pdata) \ 21 dbx500_add_msp_i2s(0, U5500_MSP0_BASE, IRQ_DB5500_MSP0, pdata) 22 #define db5500_add_msp1_i2s(pdata) \ 23 dbx500_add_msp_i2s(1, U5500_MSP1_BASE, IRQ_DB5500_MSP1, pdata) 24 #define db5500_add_msp2_i2s(pdata) \ 25 dbx500_add_msp_i2s(2, U5500_MSP2_BASE, IRQ_DB5500_MSP2, pdata) 26 27 #define db5500_add_msp0_spi(pdata) \ 28 dbx500_add_msp_spi("msp0", U5500_MSP0_BASE, IRQ_DB5500_MSP0, pdata) 29 #define db5500_add_msp1_spi(pdata) \ 30 dbx500_add_msp_spi("msp1", U5500_MSP1_BASE, IRQ_DB5500_MSP1, pdata) 31 #define db5500_add_msp2_spi(pdata) \ 32 dbx500_add_msp_spi("msp2", U5500_MSP2_BASE, IRQ_DB5500_MSP2, pdata) 33 34 #define db5500_add_rtc() \ 35 dbx500_add_rtc(U5500_RTC_BASE, IRQ_DB5500_RTC); 36 37 #define db5500_add_usb(rx_cfg, tx_cfg) \ 38 ux500_add_usb(U5500_USBOTG_BASE, IRQ_DB5500_USBOTG, rx_cfg, tx_cfg) 39 40 #define db5500_add_sdi0(pdata) \ 41 dbx500_add_sdi("sdi0", U5500_SDI0_BASE, IRQ_DB5500_SDMMC0, pdata, \ 42 0x10480180) 43 #define db5500_add_sdi1(pdata) \ 44 dbx500_add_sdi("sdi1", U5500_SDI1_BASE, IRQ_DB5500_SDMMC1, pdata, \ 45 0x10480180) 46 #define db5500_add_sdi2(pdata) \ 47 dbx500_add_sdi("sdi2", U5500_SDI2_BASE, IRQ_DB5500_SDMMC2, pdata \ 48 0x10480180) 49 #define db5500_add_sdi3(pdata) \ 50 dbx500_add_sdi("sdi3", U5500_SDI3_BASE, IRQ_DB5500_SDMMC3, pdata \ 51 0x10480180) 52 #define db5500_add_sdi4(pdata) \ 53 dbx500_add_sdi("sdi4", U5500_SDI4_BASE, IRQ_DB5500_SDMMC4, pdata \ 54 0x10480180) 55 56 /* This one has a bad peripheral ID in the U5500 silicon */ 57 #define db5500_add_spi0(pdata) \ 58 dbx500_add_spi("spi0", U5500_SPI0_BASE, IRQ_DB5500_SPI0, pdata, \ 59 0x10080023) 60 #define db5500_add_spi1(pdata) \ 61 dbx500_add_spi("spi1", U5500_SPI1_BASE, IRQ_DB5500_SPI1, pdata, \ 62 0x10080023) 63 #define db5500_add_spi2(pdata) \ 64 dbx500_add_spi("spi2", U5500_SPI2_BASE, IRQ_DB5500_SPI2, pdata \ 65 0x10080023) 66 #define db5500_add_spi3(pdata) \ 67 dbx500_add_spi("spi3", U5500_SPI3_BASE, IRQ_DB5500_SPI3, pdata \ 68 0x10080023) 69 70 #define db5500_add_uart0(plat) \ 71 dbx500_add_uart("uart0", U5500_UART0_BASE, IRQ_DB5500_UART0, plat) 72 #define db5500_add_uart1(plat) \ 73 dbx500_add_uart("uart1", U5500_UART1_BASE, IRQ_DB5500_UART1, plat) 74 #define db5500_add_uart2(plat) \ 75 dbx500_add_uart("uart2", U5500_UART2_BASE, IRQ_DB5500_UART2, plat) 76 #define db5500_add_uart3(plat) \ 77 dbx500_add_uart("uart3", U5500_UART3_BASE, IRQ_DB5500_UART3, plat) 78 79 #endif 80