1 /* linux/arch/arm/mach-s5pc100/dev-spi.c
3 * Copyright (C) 2010 Samsung Electronics Co. Ltd.
4 * Jaswinder Singh <jassi.brar@samsung.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/platform_device.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/gpio.h>
17 #include <mach/spi-clocks.h>
18 #include <mach/irqs.h>
20 #include <plat/s3c64xx-spi.h>
21 #include <plat/gpio-cfg.h>
22 #include <plat/irqs.h>
24 static char *spi_src_clks
[] = {
25 [S5PC100_SPI_SRCCLK_PCLK
] = "pclk",
26 [S5PC100_SPI_SRCCLK_48M
] = "spi_48m",
27 [S5PC100_SPI_SRCCLK_SPIBUS
] = "spi_bus",
30 /* SPI Controller platform_devices */
32 /* Since we emulate multi-cs capability, we do not touch the CS.
33 * The emulated CS is toggled by board specific mechanism, as it can
34 * be either some immediate GPIO or some signal out of some other
35 * chip in between ... or some yet another way.
36 * We simply do not assume anything about CS.
38 static int s5pc100_spi_cfg_gpio(struct platform_device
*pdev
)
42 s3c_gpio_cfgall_range(S5PC100_GPB(0), 3,
43 S3C_GPIO_SFN(2), S3C_GPIO_PULL_UP
);
47 s3c_gpio_cfgall_range(S5PC100_GPB(4), 3,
48 S3C_GPIO_SFN(2), S3C_GPIO_PULL_UP
);
52 s3c_gpio_cfgpin(S5PC100_GPG3(0), S3C_GPIO_SFN(3));
53 s3c_gpio_setpull(S5PC100_GPG3(0), S3C_GPIO_PULL_UP
);
54 s3c_gpio_cfgall_range(S5PC100_GPB(2), 2,
55 S3C_GPIO_SFN(3), S3C_GPIO_PULL_UP
);
59 dev_err(&pdev
->dev
, "Invalid SPI Controller number!");
66 static struct resource s5pc100_spi0_resource
[] = {
68 .start
= S5PC100_PA_SPI0
,
69 .end
= S5PC100_PA_SPI0
+ 0x100 - 1,
70 .flags
= IORESOURCE_MEM
,
73 .start
= DMACH_SPI0_TX
,
75 .flags
= IORESOURCE_DMA
,
78 .start
= DMACH_SPI0_RX
,
80 .flags
= IORESOURCE_DMA
,
85 .flags
= IORESOURCE_IRQ
,
89 static struct s3c64xx_spi_info s5pc100_spi0_pdata
= {
90 .cfg_gpio
= s5pc100_spi_cfg_gpio
,
91 .fifo_lvl_mask
= 0x7f,
97 static u64 spi_dmamask
= DMA_BIT_MASK(32);
99 struct platform_device s5pc100_device_spi0
= {
100 .name
= "s3c64xx-spi",
102 .num_resources
= ARRAY_SIZE(s5pc100_spi0_resource
),
103 .resource
= s5pc100_spi0_resource
,
105 .dma_mask
= &spi_dmamask
,
106 .coherent_dma_mask
= DMA_BIT_MASK(32),
107 .platform_data
= &s5pc100_spi0_pdata
,
111 static struct resource s5pc100_spi1_resource
[] = {
113 .start
= S5PC100_PA_SPI1
,
114 .end
= S5PC100_PA_SPI1
+ 0x100 - 1,
115 .flags
= IORESOURCE_MEM
,
118 .start
= DMACH_SPI1_TX
,
119 .end
= DMACH_SPI1_TX
,
120 .flags
= IORESOURCE_DMA
,
123 .start
= DMACH_SPI1_RX
,
124 .end
= DMACH_SPI1_RX
,
125 .flags
= IORESOURCE_DMA
,
130 .flags
= IORESOURCE_IRQ
,
134 static struct s3c64xx_spi_info s5pc100_spi1_pdata
= {
135 .cfg_gpio
= s5pc100_spi_cfg_gpio
,
136 .fifo_lvl_mask
= 0x7f,
142 struct platform_device s5pc100_device_spi1
= {
143 .name
= "s3c64xx-spi",
145 .num_resources
= ARRAY_SIZE(s5pc100_spi1_resource
),
146 .resource
= s5pc100_spi1_resource
,
148 .dma_mask
= &spi_dmamask
,
149 .coherent_dma_mask
= DMA_BIT_MASK(32),
150 .platform_data
= &s5pc100_spi1_pdata
,
154 static struct resource s5pc100_spi2_resource
[] = {
156 .start
= S5PC100_PA_SPI2
,
157 .end
= S5PC100_PA_SPI2
+ 0x100 - 1,
158 .flags
= IORESOURCE_MEM
,
161 .start
= DMACH_SPI2_TX
,
162 .end
= DMACH_SPI2_TX
,
163 .flags
= IORESOURCE_DMA
,
166 .start
= DMACH_SPI2_RX
,
167 .end
= DMACH_SPI2_RX
,
168 .flags
= IORESOURCE_DMA
,
173 .flags
= IORESOURCE_IRQ
,
177 static struct s3c64xx_spi_info s5pc100_spi2_pdata
= {
178 .cfg_gpio
= s5pc100_spi_cfg_gpio
,
179 .fifo_lvl_mask
= 0x7f,
185 struct platform_device s5pc100_device_spi2
= {
186 .name
= "s3c64xx-spi",
188 .num_resources
= ARRAY_SIZE(s5pc100_spi2_resource
),
189 .resource
= s5pc100_spi2_resource
,
191 .dma_mask
= &spi_dmamask
,
192 .coherent_dma_mask
= DMA_BIT_MASK(32),
193 .platform_data
= &s5pc100_spi2_pdata
,
197 void __init
s5pc100_spi_set_info(int cntrlr
, int src_clk_nr
, int num_cs
)
199 struct s3c64xx_spi_info
*pd
;
201 /* Reject invalid configuration */
202 if (!num_cs
|| src_clk_nr
< 0
203 || src_clk_nr
> S5PC100_SPI_SRCCLK_SPIBUS
) {
204 printk(KERN_ERR
"%s: Invalid SPI configuration\n", __func__
);
210 pd
= &s5pc100_spi0_pdata
;
213 pd
= &s5pc100_spi1_pdata
;
216 pd
= &s5pc100_spi2_pdata
;
219 printk(KERN_ERR
"%s: Invalid SPI controller(%d)\n",
225 pd
->src_clk_nr
= src_clk_nr
;
226 pd
->src_clk_name
= spi_src_clks
[src_clk_nr
];