2 * intel_mid_sfi.c: Intel MID SFI initialization code
4 * (C) Copyright 2013 Intel Corporation
5 * Author: Sathyanarayanan Kuppuswamy <sathyanarayanan.kuppuswamy@intel.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; version 2
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/interrupt.h>
16 #include <linux/scatterlist.h>
17 #include <linux/sfi.h>
18 #include <linux/spi/spi.h>
19 #include <linux/i2c.h>
20 #include <linux/skbuff.h>
21 #include <linux/gpio.h>
22 #include <linux/gpio_keys.h>
23 #include <linux/input.h>
24 #include <linux/platform_device.h>
25 #include <linux/irq.h>
26 #include <linux/export.h>
27 #include <linux/notifier.h>
28 #include <linux/mmc/core.h>
29 #include <linux/mmc/card.h>
30 #include <linux/blkdev.h>
32 #include <asm/setup.h>
33 #include <asm/mpspec_def.h>
34 #include <asm/hw_irq.h>
36 #include <asm/io_apic.h>
37 #include <asm/intel-mid.h>
38 #include <asm/intel_mid_vrtc.h>
40 #include <asm/i8259.h>
41 #include <asm/intel_scu_ipc.h>
42 #include <asm/apb_timer.h>
43 #include <asm/reboot.h>
45 #define SFI_SIG_OEM0 "OEM0"
46 #define MAX_IPCDEVS 24
47 #define MAX_SCU_SPI 24
48 #define MAX_SCU_I2C 24
50 static struct platform_device
*ipc_devs
[MAX_IPCDEVS
];
51 static struct spi_board_info
*spi_devs
[MAX_SCU_SPI
];
52 static struct i2c_board_info
*i2c_devs
[MAX_SCU_I2C
];
53 static struct sfi_gpio_table_entry
*gpio_table
;
54 static struct sfi_timer_table_entry sfi_mtimer_array
[SFI_MTMR_MAX_NUM
];
55 static int ipc_next_dev
;
56 static int spi_next_dev
;
57 static int i2c_next_dev
;
58 static int i2c_bus
[MAX_SCU_I2C
];
59 static int gpio_num_entry
;
60 static u32 sfi_mtimer_usage
[SFI_MTMR_MAX_NUM
];
64 struct sfi_rtc_table_entry sfi_mrtc_array
[SFI_MRTC_MAX
];
65 EXPORT_SYMBOL_GPL(sfi_mrtc_array
);
67 struct blocking_notifier_head intel_scu_notifier
=
68 BLOCKING_NOTIFIER_INIT(intel_scu_notifier
);
69 EXPORT_SYMBOL_GPL(intel_scu_notifier
);
71 #define intel_mid_sfi_get_pdata(dev, priv) \
72 ((dev)->get_platform_data ? (dev)->get_platform_data(priv) : NULL)
74 /* parse all the mtimer info to a static mtimer array */
75 int __init
sfi_parse_mtmr(struct sfi_table_header
*table
)
77 struct sfi_table_simple
*sb
;
78 struct sfi_timer_table_entry
*pentry
;
79 struct mpc_intsrc mp_irq
;
82 sb
= (struct sfi_table_simple
*)table
;
83 if (!sfi_mtimer_num
) {
84 sfi_mtimer_num
= SFI_GET_NUM_ENTRIES(sb
,
85 struct sfi_timer_table_entry
);
86 pentry
= (struct sfi_timer_table_entry
*) sb
->pentry
;
87 totallen
= sfi_mtimer_num
* sizeof(*pentry
);
88 memcpy(sfi_mtimer_array
, pentry
, totallen
);
91 pr_debug("SFI MTIMER info (num = %d):\n", sfi_mtimer_num
);
92 pentry
= sfi_mtimer_array
;
93 for (totallen
= 0; totallen
< sfi_mtimer_num
; totallen
++, pentry
++) {
94 pr_debug("timer[%d]: paddr = 0x%08x, freq = %dHz, irq = %d\n",
95 totallen
, (u32
)pentry
->phys_addr
,
96 pentry
->freq_hz
, pentry
->irq
);
97 mp_irq
.type
= MP_INTSRC
;
98 mp_irq
.irqtype
= mp_INT
;
99 mp_irq
.irqflag
= MP_IRQTRIG_EDGE
| MP_IRQPOL_ACTIVE_HIGH
;
100 mp_irq
.srcbus
= MP_BUS_ISA
;
101 mp_irq
.srcbusirq
= pentry
->irq
; /* IRQ */
102 mp_irq
.dstapic
= MP_APIC_ALL
;
103 mp_irq
.dstirq
= pentry
->irq
;
104 mp_save_irq(&mp_irq
);
105 mp_map_gsi_to_irq(pentry
->irq
, IOAPIC_MAP_ALLOC
, NULL
);
111 struct sfi_timer_table_entry
*sfi_get_mtmr(int hint
)
114 if (hint
< sfi_mtimer_num
) {
115 if (!sfi_mtimer_usage
[hint
]) {
116 pr_debug("hint taken for timer %d irq %d\n",
117 hint
, sfi_mtimer_array
[hint
].irq
);
118 sfi_mtimer_usage
[hint
] = 1;
119 return &sfi_mtimer_array
[hint
];
122 /* take the first timer available */
123 for (i
= 0; i
< sfi_mtimer_num
;) {
124 if (!sfi_mtimer_usage
[i
]) {
125 sfi_mtimer_usage
[i
] = 1;
126 return &sfi_mtimer_array
[i
];
133 void sfi_free_mtmr(struct sfi_timer_table_entry
*mtmr
)
136 for (i
= 0; i
< sfi_mtimer_num
;) {
137 if (mtmr
->irq
== sfi_mtimer_array
[i
].irq
) {
138 sfi_mtimer_usage
[i
] = 0;
145 /* parse all the mrtc info to a global mrtc array */
146 int __init
sfi_parse_mrtc(struct sfi_table_header
*table
)
148 struct sfi_table_simple
*sb
;
149 struct sfi_rtc_table_entry
*pentry
;
150 struct mpc_intsrc mp_irq
;
154 sb
= (struct sfi_table_simple
*)table
;
156 sfi_mrtc_num
= SFI_GET_NUM_ENTRIES(sb
,
157 struct sfi_rtc_table_entry
);
158 pentry
= (struct sfi_rtc_table_entry
*)sb
->pentry
;
159 totallen
= sfi_mrtc_num
* sizeof(*pentry
);
160 memcpy(sfi_mrtc_array
, pentry
, totallen
);
163 pr_debug("SFI RTC info (num = %d):\n", sfi_mrtc_num
);
164 pentry
= sfi_mrtc_array
;
165 for (totallen
= 0; totallen
< sfi_mrtc_num
; totallen
++, pentry
++) {
166 pr_debug("RTC[%d]: paddr = 0x%08x, irq = %d\n",
167 totallen
, (u32
)pentry
->phys_addr
, pentry
->irq
);
168 mp_irq
.type
= MP_INTSRC
;
169 mp_irq
.irqtype
= mp_INT
;
170 mp_irq
.irqflag
= MP_IRQTRIG_LEVEL
| MP_IRQPOL_ACTIVE_LOW
;
171 mp_irq
.srcbus
= MP_BUS_ISA
;
172 mp_irq
.srcbusirq
= pentry
->irq
; /* IRQ */
173 mp_irq
.dstapic
= MP_APIC_ALL
;
174 mp_irq
.dstirq
= pentry
->irq
;
175 mp_save_irq(&mp_irq
);
176 mp_map_gsi_to_irq(pentry
->irq
, IOAPIC_MAP_ALLOC
, NULL
);
183 * Parsing GPIO table first, since the DEVS table will need this table
184 * to map the pin name to the actual pin.
186 static int __init
sfi_parse_gpio(struct sfi_table_header
*table
)
188 struct sfi_table_simple
*sb
;
189 struct sfi_gpio_table_entry
*pentry
;
194 sb
= (struct sfi_table_simple
*)table
;
195 num
= SFI_GET_NUM_ENTRIES(sb
, struct sfi_gpio_table_entry
);
196 pentry
= (struct sfi_gpio_table_entry
*)sb
->pentry
;
198 gpio_table
= kmemdup(pentry
, num
* sizeof(*pentry
), GFP_KERNEL
);
201 gpio_num_entry
= num
;
203 pr_debug("GPIO pin info:\n");
204 for (i
= 0; i
< num
; i
++, pentry
++)
205 pr_debug("info[%2d]: controller = %16.16s, pin_name = %16.16s,"
207 pentry
->controller_name
,
213 int get_gpio_by_name(const char *name
)
215 struct sfi_gpio_table_entry
*pentry
= gpio_table
;
220 for (i
= 0; i
< gpio_num_entry
; i
++, pentry
++) {
221 if (!strncmp(name
, pentry
->pin_name
, SFI_NAME_LEN
))
222 return pentry
->pin_no
;
227 static void __init
intel_scu_ipc_device_register(struct platform_device
*pdev
)
229 if (ipc_next_dev
== MAX_IPCDEVS
)
230 pr_err("too many SCU IPC devices");
232 ipc_devs
[ipc_next_dev
++] = pdev
;
235 static void __init
intel_scu_spi_device_register(struct spi_board_info
*sdev
)
237 struct spi_board_info
*new_dev
;
239 if (spi_next_dev
== MAX_SCU_SPI
) {
240 pr_err("too many SCU SPI devices");
244 new_dev
= kzalloc(sizeof(*sdev
), GFP_KERNEL
);
246 pr_err("failed to alloc mem for delayed spi dev %s\n",
252 spi_devs
[spi_next_dev
++] = new_dev
;
255 static void __init
intel_scu_i2c_device_register(int bus
,
256 struct i2c_board_info
*idev
)
258 struct i2c_board_info
*new_dev
;
260 if (i2c_next_dev
== MAX_SCU_I2C
) {
261 pr_err("too many SCU I2C devices");
265 new_dev
= kzalloc(sizeof(*idev
), GFP_KERNEL
);
267 pr_err("failed to alloc mem for delayed i2c dev %s\n",
273 i2c_bus
[i2c_next_dev
] = bus
;
274 i2c_devs
[i2c_next_dev
++] = new_dev
;
277 /* Called by IPC driver */
278 void intel_scu_devices_create(void)
282 for (i
= 0; i
< ipc_next_dev
; i
++)
283 platform_device_add(ipc_devs
[i
]);
285 for (i
= 0; i
< spi_next_dev
; i
++)
286 spi_register_board_info(spi_devs
[i
], 1);
288 for (i
= 0; i
< i2c_next_dev
; i
++) {
289 struct i2c_adapter
*adapter
;
290 struct i2c_client
*client
;
292 adapter
= i2c_get_adapter(i2c_bus
[i
]);
294 client
= i2c_new_device(adapter
, i2c_devs
[i
]);
296 pr_err("can't create i2c device %s\n",
299 i2c_register_board_info(i2c_bus
[i
], i2c_devs
[i
], 1);
301 intel_scu_notifier_post(SCU_AVAILABLE
, NULL
);
303 EXPORT_SYMBOL_GPL(intel_scu_devices_create
);
305 /* Called by IPC driver */
306 void intel_scu_devices_destroy(void)
310 intel_scu_notifier_post(SCU_DOWN
, NULL
);
312 for (i
= 0; i
< ipc_next_dev
; i
++)
313 platform_device_del(ipc_devs
[i
]);
315 EXPORT_SYMBOL_GPL(intel_scu_devices_destroy
);
317 static void __init
install_irq_resource(struct platform_device
*pdev
, int irq
)
319 /* Single threaded */
320 static struct resource res __initdata
= {
322 .flags
= IORESOURCE_IRQ
,
325 platform_device_add_resources(pdev
, &res
, 1);
328 static void __init
sfi_handle_ipc_dev(struct sfi_device_table_entry
*pentry
,
331 struct platform_device
*pdev
;
334 pr_debug("IPC bus, name = %16.16s, irq = 0x%2x\n",
335 pentry
->name
, pentry
->irq
);
338 * We need to call platform init of IPC devices to fill misc_pdata
339 * structure. It will be used in msic_init for initialization.
341 pdata
= intel_mid_sfi_get_pdata(dev
, pentry
);
346 * On Medfield the platform device creation is handled by the MSIC
347 * MFD driver so we don't need to do it here.
349 if (dev
->msic
&& intel_mid_has_msic())
352 pdev
= platform_device_alloc(pentry
->name
, 0);
354 pr_err("out of memory for SFI platform device '%s'.\n",
358 install_irq_resource(pdev
, pentry
->irq
);
360 pdev
->dev
.platform_data
= pdata
;
362 intel_scu_ipc_device_register(pdev
);
364 platform_device_add(pdev
);
367 static void __init
sfi_handle_spi_dev(struct sfi_device_table_entry
*pentry
,
370 struct spi_board_info spi_info
;
373 memset(&spi_info
, 0, sizeof(spi_info
));
374 strncpy(spi_info
.modalias
, pentry
->name
, SFI_NAME_LEN
);
375 spi_info
.irq
= ((pentry
->irq
== (u8
)0xff) ? 0 : pentry
->irq
);
376 spi_info
.bus_num
= pentry
->host_num
;
377 spi_info
.chip_select
= pentry
->addr
;
378 spi_info
.max_speed_hz
= pentry
->max_freq
;
379 pr_debug("SPI bus=%d, name=%16.16s, irq=0x%2x, max_freq=%d, cs=%d\n",
383 spi_info
.max_speed_hz
,
384 spi_info
.chip_select
);
386 pdata
= intel_mid_sfi_get_pdata(dev
, &spi_info
);
390 spi_info
.platform_data
= pdata
;
392 intel_scu_spi_device_register(&spi_info
);
394 spi_register_board_info(&spi_info
, 1);
397 static void __init
sfi_handle_i2c_dev(struct sfi_device_table_entry
*pentry
,
400 struct i2c_board_info i2c_info
;
403 memset(&i2c_info
, 0, sizeof(i2c_info
));
404 strncpy(i2c_info
.type
, pentry
->name
, SFI_NAME_LEN
);
405 i2c_info
.irq
= ((pentry
->irq
== (u8
)0xff) ? 0 : pentry
->irq
);
406 i2c_info
.addr
= pentry
->addr
;
407 pr_debug("I2C bus = %d, name = %16.16s, irq = 0x%2x, addr = 0x%x\n",
412 pdata
= intel_mid_sfi_get_pdata(dev
, &i2c_info
);
413 i2c_info
.platform_data
= pdata
;
418 intel_scu_i2c_device_register(pentry
->host_num
, &i2c_info
);
420 i2c_register_board_info(pentry
->host_num
, &i2c_info
, 1);
423 static void __init
sfi_handle_sd_dev(struct sfi_device_table_entry
*pentry
,
426 struct mid_sd_board_info sd_info
;
429 memset(&sd_info
, 0, sizeof(sd_info
));
430 strncpy(sd_info
.name
, pentry
->name
, SFI_NAME_LEN
);
431 sd_info
.bus_num
= pentry
->host_num
;
432 sd_info
.max_clk
= pentry
->max_freq
;
433 sd_info
.addr
= pentry
->addr
;
434 pr_debug("SD bus = %d, name = %16.16s, max_clk = %d, addr = 0x%x\n",
439 pdata
= intel_mid_sfi_get_pdata(dev
, &sd_info
);
443 /* Nothing we can do with this for now */
444 sd_info
.platform_data
= pdata
;
446 pr_debug("Successfully registered %16.16s", sd_info
.name
);
449 extern struct devs_id
*const __x86_intel_mid_dev_start
[],
450 *const __x86_intel_mid_dev_end
[];
452 static struct devs_id __init
*get_device_id(u8 type
, char *name
)
454 struct devs_id
*const *dev_table
;
456 for (dev_table
= __x86_intel_mid_dev_start
;
457 dev_table
< __x86_intel_mid_dev_end
; dev_table
++) {
458 struct devs_id
*dev
= *dev_table
;
459 if (dev
->type
== type
&&
460 !strncmp(dev
->name
, name
, SFI_NAME_LEN
)) {
468 static int __init
sfi_parse_devs(struct sfi_table_header
*table
)
470 struct sfi_table_simple
*sb
;
471 struct sfi_device_table_entry
*pentry
;
472 struct devs_id
*dev
= NULL
;
475 struct irq_alloc_info info
;
477 sb
= (struct sfi_table_simple
*)table
;
478 num
= SFI_GET_NUM_ENTRIES(sb
, struct sfi_device_table_entry
);
479 pentry
= (struct sfi_device_table_entry
*)sb
->pentry
;
481 for (i
= 0; i
< num
; i
++, pentry
++) {
482 int irq
= pentry
->irq
;
484 if (irq
!= (u8
)0xff) { /* native RTE case */
485 /* these SPI2 devices are not exposed to system as PCI
486 * devices, but they have separate RTE entry in IOAPIC
487 * so we have to enable them one by one here
489 if (intel_mid_identify_cpu() ==
490 INTEL_MID_CPU_CHIP_TANGIER
) {
491 if (!strncmp(pentry
->name
, "r69001-ts-i2c", 13))
494 else if (!strncmp(pentry
->name
,
495 "synaptics_3202", 14))
505 /* PNW and CLV go with active low */
509 ioapic_set_alloc_attr(&info
, NUMA_NO_NODE
, 1, polarity
);
510 ret
= mp_map_gsi_to_irq(irq
, IOAPIC_MAP_ALLOC
, &info
);
514 dev
= get_device_id(pentry
->type
, pentry
->name
);
519 switch (pentry
->type
) {
520 case SFI_DEV_TYPE_IPC
:
521 sfi_handle_ipc_dev(pentry
, dev
);
523 case SFI_DEV_TYPE_SPI
:
524 sfi_handle_spi_dev(pentry
, dev
);
526 case SFI_DEV_TYPE_I2C
:
527 sfi_handle_i2c_dev(pentry
, dev
);
529 case SFI_DEV_TYPE_SD
:
530 sfi_handle_sd_dev(pentry
, dev
);
532 case SFI_DEV_TYPE_UART
:
533 case SFI_DEV_TYPE_HSI
:
541 static int __init
intel_mid_platform_init(void)
543 sfi_table_parse(SFI_SIG_GPIO
, NULL
, NULL
, sfi_parse_gpio
);
544 sfi_table_parse(SFI_SIG_DEVS
, NULL
, NULL
, sfi_parse_devs
);
547 arch_initcall(intel_mid_platform_init
);