1 From: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
2 Date: Thu, 3 Mar 2011 20:42:26 +0000 (+0100)
3 Subject: MIPS: lantiq: Add device register helper for SPI controller and devices
4 X-Git-Url: http://nbd.name/gitweb.cgi?p=lantiq.git;a=commitdiff_plain;h=b35b07062b718ece9b9cb7b23b12d83a087eafb0;hp=653c95b8b9066c9c6ac08bd64d0ceee439e9fd90
6 MIPS: lantiq: Add device register helper for SPI controller and devices
8 Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
11 --- a/arch/mips/lantiq/xway/devices.h
12 +++ b/arch/mips/lantiq/xway/devices.h
15 #include "../devices.h"
16 #include <linux/phy.h>
17 +#include <linux/spi/spi.h>
19 extern void ltq_register_gpio(void);
20 extern void ltq_register_gpio_stp(void);
21 extern void ltq_register_ase_asc(void);
22 extern void ltq_register_etop(struct ltq_eth_data *eth);
23 +extern void ltq_register_spi(struct ltq_spi_platform_data *pdata,
24 + struct spi_board_info const *info, unsigned n);
27 --- a/arch/mips/lantiq/xway/devices.c
28 +++ b/arch/mips/lantiq/xway/devices.c
31 #include <linux/gpio.h>
32 #include <linux/leds.h>
33 +#include <linux/spi/spi.h>
35 #include <asm/bootinfo.h>
38 platform_device_register(<q_etop);
42 +static struct resource ltq_spi_resources[] = {
44 + .start = LTQ_SSC_BASE_ADDR,
45 + .end = LTQ_SSC_BASE_ADDR + LTQ_SSC_SIZE - 1,
46 + .flags = IORESOURCE_MEM,
48 + IRQ_RES(spi_tx, LTQ_SSC_TIR),
49 + IRQ_RES(spi_rx, LTQ_SSC_RIR),
50 + IRQ_RES(spi_err, LTQ_SSC_EIR),
53 +static struct resource ltq_spi_resources_ar9[] = {
55 + .start = LTQ_SSC_BASE_ADDR,
56 + .end = LTQ_SSC_BASE_ADDR + LTQ_SSC_SIZE - 1,
57 + .flags = IORESOURCE_MEM,
59 + IRQ_RES(spi_tx, LTQ_SSC_TIR_AR9),
60 + IRQ_RES(spi_rx, LTQ_SSC_RIR_AR9),
61 + IRQ_RES(spi_err, LTQ_SSC_EIR),
64 +static struct platform_device ltq_spi = {
66 + .resource = ltq_spi_resources,
67 + .num_resources = ARRAY_SIZE(ltq_spi_resources),
70 +void __init ltq_register_spi(struct ltq_spi_platform_data *pdata,
71 + struct spi_board_info const *info, unsigned n)
74 + ltq_spi.resource = ltq_spi_resources_ar9;
75 + spi_register_board_info(info, n);
76 + ltq_spi.dev.platform_data = pdata;
77 + platform_device_register(<q_spi);
79 --- a/arch/mips/include/asm/mach-lantiq/xway/lantiq_irq.h
80 +++ b/arch/mips/include/asm/mach-lantiq/xway/lantiq_irq.h
83 #define LTQ_SSC_TIR (INT_NUM_IM0_IRL0 + 15)
84 #define LTQ_SSC_RIR (INT_NUM_IM0_IRL0 + 14)
85 +#define LTQ_SSC_TIR_AR9 (INT_NUM_IM0_IRL0 + 14)
86 +#define LTQ_SSC_RIR_AR9 (INT_NUM_IM0_IRL0 + 15)
87 #define LTQ_SSC_EIR (INT_NUM_IM0_IRL0 + 16)
89 #define LTQ_MEI_DYING_GASP_INT (INT_NUM_IM1_IRL0 + 21)