Merge branch 'for-3.5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-ux500 / devices-common.h
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_COMMON_H
9 #define __DEVICES_COMMON_H
10
11 #include <linux/platform_device.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/sys_soc.h>
14 #include <linux/amba/bus.h>
15 #include <plat/i2c.h>
16 #include <mach/crypto-ux500.h>
17
18 struct spi_master_cntlr;
19
20 static inline struct amba_device *
21 dbx500_add_msp_spi(struct device *parent, const char *name,
22                    resource_size_t base, int irq,
23                    struct spi_master_cntlr *pdata)
24 {
25         return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0,
26                                    pdata, 0);
27 }
28
29 static inline struct amba_device *
30 dbx500_add_spi(struct device *parent, const char *name, resource_size_t base,
31                int irq, struct spi_master_cntlr *pdata,
32                u32 periphid)
33 {
34         return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0,
35                                    pdata, periphid);
36 }
37
38 struct mmci_platform_data;
39
40 static inline struct amba_device *
41 dbx500_add_sdi(struct device *parent, const char *name, resource_size_t base,
42                int irq, struct mmci_platform_data *pdata, u32 periphid)
43 {
44         return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0,
45                                    pdata, periphid);
46 }
47
48 struct amba_pl011_data;
49
50 static inline struct amba_device *
51 dbx500_add_uart(struct device *parent, const char *name, resource_size_t base,
52                 int irq, struct amba_pl011_data *pdata)
53 {
54         return amba_ahb_device_add(parent, name, base, SZ_4K, irq, 0, pdata, 0);
55 }
56
57 struct nmk_i2c_controller;
58
59 static inline struct platform_device *
60 dbx500_add_i2c(struct device *parent, int id, resource_size_t base, int irq,
61                struct nmk_i2c_controller *data)
62 {
63         struct resource res[] = {
64                 DEFINE_RES_MEM(base, SZ_4K),
65                 DEFINE_RES_IRQ(irq),
66         };
67
68         struct platform_device_info pdevinfo = {
69                 .parent = parent,
70                 .name = "nmk-i2c",
71                 .id = id,
72                 .res = res,
73                 .num_res = ARRAY_SIZE(res),
74                 .data = data,
75                 .size_data = sizeof(*data),
76                 .dma_mask = DMA_BIT_MASK(32),
77         };
78
79         return platform_device_register_full(&pdevinfo);
80 }
81
82 static inline struct amba_device *
83 dbx500_add_rtc(struct device *parent, resource_size_t base, int irq)
84 {
85         return amba_apb_device_add(parent, "rtc-pl031", base, SZ_4K, irq,
86                                 0, NULL, 0);
87 }
88
89 struct cryp_platform_data;
90
91 static inline struct platform_device *
92 dbx500_add_cryp1(struct device *parent, int id, resource_size_t base, int irq,
93                 struct cryp_platform_data *pdata)
94 {
95         struct resource res[] = {
96                         DEFINE_RES_MEM(base, SZ_4K),
97                         DEFINE_RES_IRQ(irq),
98         };
99
100         struct platform_device_info pdevinfo = {
101                         .parent = parent,
102                         .name = "cryp1",
103                         .id = id,
104                         .res = res,
105                         .num_res = ARRAY_SIZE(res),
106                         .data = pdata,
107                         .size_data = sizeof(*pdata),
108                         .dma_mask = DMA_BIT_MASK(32),
109         };
110
111         return platform_device_register_full(&pdevinfo);
112 }
113
114 struct hash_platform_data;
115
116 static inline struct platform_device *
117 dbx500_add_hash1(struct device *parent, int id, resource_size_t base,
118                 struct hash_platform_data *pdata)
119 {
120         struct resource res[] = {
121                         DEFINE_RES_MEM(base, SZ_4K),
122         };
123
124         struct platform_device_info pdevinfo = {
125                         .parent = parent,
126                         .name = "hash1",
127                         .id = id,
128                         .res = res,
129                         .num_res = ARRAY_SIZE(res),
130                         .data = pdata,
131                         .size_data = sizeof(*pdata),
132                         .dma_mask = DMA_BIT_MASK(32),
133         };
134
135         return platform_device_register_full(&pdevinfo);
136 }
137
138 struct nmk_gpio_platform_data;
139
140 void dbx500_add_gpios(struct device *parent, resource_size_t *base, int num,
141                       int irq, struct nmk_gpio_platform_data *pdata);
142
143 static inline void
144 dbx500_add_pinctrl(struct device *parent, const char *name)
145 {
146         struct platform_device_info pdevinfo = {
147                 .parent = parent,
148                 .name = name,
149                 .id = -1,
150         };
151
152         platform_device_register_full(&pdevinfo);
153 }
154
155 #endif