blob: 6743587575a6387783694bc14b1f36c4fa974489 [file] [log] [blame]
Thomas Gleixner3f4110a2009-08-29 14:54:20 +02001/*
2 * mrst.c: Intel Moorestown platform specific setup code
3 *
4 * (C) Copyright 2008 Intel Corporation
5 * Author: Jacob Pan (jacob.jun.pan@intel.com)
6 *
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
10 * of the License.
11 */
Feng Tang1da4b1c2010-11-09 11:22:58 +000012
13#define pr_fmt(fmt) "mrst: " fmt
14
Thomas Gleixner3f4110a2009-08-29 14:54:20 +020015#include <linux/init.h>
Jacob Pan16ab5392010-02-12 03:08:30 -080016#include <linux/kernel.h>
Feng Tangefe3ed92011-08-26 11:25:14 +010017#include <linux/interrupt.h>
18#include <linux/scatterlist.h>
Jacob Pan16ab5392010-02-12 03:08:30 -080019#include <linux/sfi.h>
Feng Tang1da4b1c2010-11-09 11:22:58 +000020#include <linux/intel_pmic_gpio.h>
21#include <linux/spi/spi.h>
22#include <linux/i2c.h>
23#include <linux/i2c/pca953x.h>
24#include <linux/gpio_keys.h>
25#include <linux/input.h>
26#include <linux/platform_device.h>
Jacob Pan16ab5392010-02-12 03:08:30 -080027#include <linux/irq.h>
Feng Tangcf089452010-02-12 03:37:38 -080028#include <linux/module.h>
Alan Cox42c25442011-09-07 16:06:51 +030029#include <linux/notifier.h>
Mika Westerberg360545c2011-10-18 12:41:22 +030030#include <linux/mfd/intel_msic.h>
Thomas Gleixner3f4110a2009-08-29 14:54:20 +020031
32#include <asm/setup.h>
Jacob Pan16ab5392010-02-12 03:08:30 -080033#include <asm/mpspec_def.h>
34#include <asm/hw_irq.h>
35#include <asm/apic.h>
36#include <asm/io_apic.h>
Jacob Pan5b78b672010-02-12 02:29:11 -080037#include <asm/mrst.h>
Feng Tang168202c2011-02-15 00:13:32 +080038#include <asm/mrst-vrtc.h>
Jacob Pan5b78b672010-02-12 02:29:11 -080039#include <asm/io.h>
40#include <asm/i8259.h>
Feng Tang1da4b1c2010-11-09 11:22:58 +000041#include <asm/intel_scu_ipc.h>
Jacob Pan3746c6b2010-02-12 05:01:12 -080042#include <asm/apb_timer.h>
Alek Ducfb505a2010-11-10 16:50:08 +000043#include <asm/reboot.h>
Thomas Gleixner3f4110a2009-08-29 14:54:20 +020044
Jacob Pana875c012010-05-19 12:01:25 -070045/*
46 * the clockevent devices on Moorestown/Medfield can be APBT or LAPIC clock,
47 * cmdline option x86_mrst_timer can be used to override the configuration
48 * to prefer one or the other.
49 * at runtime, there are basically three timer configurations:
50 * 1. per cpu apbt clock only
51 * 2. per cpu always-on lapic clocks only, this is Penwell/Medfield only
52 * 3. per cpu lapic clock (C3STOP) and one apbt clock, with broadcast.
53 *
54 * by default (without cmdline option), platform code first detects cpu type
55 * to see if we are on lincroft or penwell, then set up both lapic or apbt
56 * clocks accordingly.
57 * i.e. by default, medfield uses configuration #2, moorestown uses #1.
58 * config #3 is supported but not recommended on medfield.
59 *
60 * rating and feature summary:
61 * lapic (with C3STOP) --------- 100
62 * apbt (always-on) ------------ 110
63 * lapic (always-on,ARAT) ------ 150
64 */
65
H. Peter Anvin14671382010-05-19 14:37:40 -070066__cpuinitdata enum mrst_timer_options mrst_timer_options;
Jacob Pana875c012010-05-19 12:01:25 -070067
Jacob Pan16ab5392010-02-12 03:08:30 -080068static u32 sfi_mtimer_usage[SFI_MTMR_MAX_NUM];
69static struct sfi_timer_table_entry sfi_mtimer_array[SFI_MTMR_MAX_NUM];
H. Peter Anvina75af582010-05-19 13:40:14 -070070enum mrst_cpu_type __mrst_cpu_chip;
71EXPORT_SYMBOL_GPL(__mrst_cpu_chip);
Jacob Pana0c173b2010-05-19 12:01:24 -070072
Jacob Pan16ab5392010-02-12 03:08:30 -080073int sfi_mtimer_num;
74
Feng Tangcf089452010-02-12 03:37:38 -080075struct sfi_rtc_table_entry sfi_mrtc_array[SFI_MRTC_MAX];
76EXPORT_SYMBOL_GPL(sfi_mrtc_array);
77int sfi_mrtc_num;
78
Jacob Pan48bc5562011-11-16 16:07:22 +000079static void mrst_power_off(void)
80{
Jacob Pan48bc5562011-11-16 16:07:22 +000081}
82
83static void mrst_reboot(void)
84{
Alan Cox1a8359e2012-01-26 17:33:30 +000085 intel_scu_ipc_simple_command(IPCMSG_COLD_BOOT, 0);
Jacob Pan48bc5562011-11-16 16:07:22 +000086}
87
Jacob Pan16ab5392010-02-12 03:08:30 -080088/* parse all the mtimer info to a static mtimer array */
89static int __init sfi_parse_mtmr(struct sfi_table_header *table)
90{
91 struct sfi_table_simple *sb;
92 struct sfi_timer_table_entry *pentry;
93 struct mpc_intsrc mp_irq;
94 int totallen;
95
96 sb = (struct sfi_table_simple *)table;
97 if (!sfi_mtimer_num) {
98 sfi_mtimer_num = SFI_GET_NUM_ENTRIES(sb,
99 struct sfi_timer_table_entry);
100 pentry = (struct sfi_timer_table_entry *) sb->pentry;
101 totallen = sfi_mtimer_num * sizeof(*pentry);
102 memcpy(sfi_mtimer_array, pentry, totallen);
103 }
104
Feng Tang1da4b1c2010-11-09 11:22:58 +0000105 pr_debug("SFI MTIMER info (num = %d):\n", sfi_mtimer_num);
Jacob Pan16ab5392010-02-12 03:08:30 -0800106 pentry = sfi_mtimer_array;
107 for (totallen = 0; totallen < sfi_mtimer_num; totallen++, pentry++) {
Feng Tang1da4b1c2010-11-09 11:22:58 +0000108 pr_debug("timer[%d]: paddr = 0x%08x, freq = %dHz,"
Jacob Pan16ab5392010-02-12 03:08:30 -0800109 " irq = %d\n", totallen, (u32)pentry->phys_addr,
110 pentry->freq_hz, pentry->irq);
111 if (!pentry->irq)
112 continue;
Jacob Pan9d90e492011-04-08 11:23:00 -0700113 mp_irq.type = MP_INTSRC;
Jacob Pan16ab5392010-02-12 03:08:30 -0800114 mp_irq.irqtype = mp_INT;
115/* triggering mode edge bit 2-3, active high polarity bit 0-1 */
116 mp_irq.irqflag = 5;
Jacob Pan9d90e492011-04-08 11:23:00 -0700117 mp_irq.srcbus = MP_BUS_ISA;
Jacob Pan16ab5392010-02-12 03:08:30 -0800118 mp_irq.srcbusirq = pentry->irq; /* IRQ */
119 mp_irq.dstapic = MP_APIC_ALL;
120 mp_irq.dstirq = pentry->irq;
Feng Tang2d8009b2010-11-19 11:33:35 +0800121 mp_save_irq(&mp_irq);
Jacob Pan16ab5392010-02-12 03:08:30 -0800122 }
123
124 return 0;
125}
126
127struct sfi_timer_table_entry *sfi_get_mtmr(int hint)
128{
129 int i;
130 if (hint < sfi_mtimer_num) {
131 if (!sfi_mtimer_usage[hint]) {
132 pr_debug("hint taken for timer %d irq %d\n",\
133 hint, sfi_mtimer_array[hint].irq);
134 sfi_mtimer_usage[hint] = 1;
135 return &sfi_mtimer_array[hint];
136 }
137 }
138 /* take the first timer available */
139 for (i = 0; i < sfi_mtimer_num;) {
140 if (!sfi_mtimer_usage[i]) {
141 sfi_mtimer_usage[i] = 1;
142 return &sfi_mtimer_array[i];
143 }
144 i++;
145 }
146 return NULL;
147}
148
149void sfi_free_mtmr(struct sfi_timer_table_entry *mtmr)
150{
151 int i;
152 for (i = 0; i < sfi_mtimer_num;) {
153 if (mtmr->irq == sfi_mtimer_array[i].irq) {
154 sfi_mtimer_usage[i] = 0;
155 return;
156 }
157 i++;
158 }
159}
160
Feng Tangcf089452010-02-12 03:37:38 -0800161/* parse all the mrtc info to a global mrtc array */
162int __init sfi_parse_mrtc(struct sfi_table_header *table)
163{
164 struct sfi_table_simple *sb;
165 struct sfi_rtc_table_entry *pentry;
166 struct mpc_intsrc mp_irq;
167
168 int totallen;
169
170 sb = (struct sfi_table_simple *)table;
171 if (!sfi_mrtc_num) {
172 sfi_mrtc_num = SFI_GET_NUM_ENTRIES(sb,
173 struct sfi_rtc_table_entry);
174 pentry = (struct sfi_rtc_table_entry *)sb->pentry;
175 totallen = sfi_mrtc_num * sizeof(*pentry);
176 memcpy(sfi_mrtc_array, pentry, totallen);
177 }
178
Feng Tang1da4b1c2010-11-09 11:22:58 +0000179 pr_debug("SFI RTC info (num = %d):\n", sfi_mrtc_num);
Feng Tangcf089452010-02-12 03:37:38 -0800180 pentry = sfi_mrtc_array;
181 for (totallen = 0; totallen < sfi_mrtc_num; totallen++, pentry++) {
Feng Tang1da4b1c2010-11-09 11:22:58 +0000182 pr_debug("RTC[%d]: paddr = 0x%08x, irq = %d\n",
Feng Tangcf089452010-02-12 03:37:38 -0800183 totallen, (u32)pentry->phys_addr, pentry->irq);
Jacob Pan9d90e492011-04-08 11:23:00 -0700184 mp_irq.type = MP_INTSRC;
Feng Tangcf089452010-02-12 03:37:38 -0800185 mp_irq.irqtype = mp_INT;
Feng Tang6f207e92010-11-11 15:50:50 +0000186 mp_irq.irqflag = 0xf; /* level trigger and active low */
Jacob Pan9d90e492011-04-08 11:23:00 -0700187 mp_irq.srcbus = MP_BUS_ISA;
Feng Tangcf089452010-02-12 03:37:38 -0800188 mp_irq.srcbusirq = pentry->irq; /* IRQ */
189 mp_irq.dstapic = MP_APIC_ALL;
190 mp_irq.dstirq = pentry->irq;
Feng Tang2d8009b2010-11-19 11:33:35 +0800191 mp_save_irq(&mp_irq);
Feng Tangcf089452010-02-12 03:37:38 -0800192 }
193 return 0;
194}
195
Jacob Pan3746c6b2010-02-12 05:01:12 -0800196static unsigned long __init mrst_calibrate_tsc(void)
197{
Alan Cox1a8359e2012-01-26 17:33:30 +0000198 unsigned long fast_calibrate;
199 u32 lo, hi, ratio, fsb;
Jacob Pan3746c6b2010-02-12 05:01:12 -0800200
Alan Cox1a8359e2012-01-26 17:33:30 +0000201 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
202 pr_debug("IA32 perf status is 0x%x, 0x%0x\n", lo, hi);
203 ratio = (hi >> 8) & 0x1f;
204 pr_debug("ratio is %d\n", ratio);
205 if (!ratio) {
206 pr_err("read a zero ratio, should be incorrect!\n");
207 pr_err("force tsc ratio to 16 ...\n");
208 ratio = 16;
Dirk Brandewie0a915322011-11-10 13:42:53 +0000209 }
Alan Cox1a8359e2012-01-26 17:33:30 +0000210 rdmsr(MSR_FSB_FREQ, lo, hi);
211 if ((lo & 0x7) == 0x7)
212 fsb = PENWELL_FSB_FREQ_83SKU;
213 else
214 fsb = PENWELL_FSB_FREQ_100SKU;
215 fast_calibrate = ratio * fsb;
216 pr_debug("read penwell tsc %lu khz\n", fast_calibrate);
217 lapic_timer_frequency = fsb * 1000 / HZ;
218 /* mark tsc clocksource as reliable */
219 set_cpu_cap(&boot_cpu_data, X86_FEATURE_TSC_RELIABLE);
Dirk Brandewie0a915322011-11-10 13:42:53 +0000220
Jacob Pan3746c6b2010-02-12 05:01:12 -0800221 if (fast_calibrate)
222 return fast_calibrate;
223
224 return 0;
225}
226
Luis R. Rodriguez8fab6af2011-05-06 15:00:09 -0700227static void __init mrst_time_init(void)
Jacob Pan3746c6b2010-02-12 05:01:12 -0800228{
Jacob Pan7f05dec2010-11-09 11:28:43 +0000229 sfi_table_parse(SFI_SIG_MTMR, NULL, NULL, sfi_parse_mtmr);
Jacob Pana875c012010-05-19 12:01:25 -0700230 switch (mrst_timer_options) {
231 case MRST_TIMER_APBT_ONLY:
232 break;
233 case MRST_TIMER_LAPIC_APBT:
234 x86_init.timers.setup_percpu_clockev = setup_boot_APIC_clock;
235 x86_cpuinit.setup_percpu_clockev = setup_secondary_APIC_clock;
236 break;
237 default:
238 if (!boot_cpu_has(X86_FEATURE_ARAT))
239 break;
240 x86_init.timers.setup_percpu_clockev = setup_boot_APIC_clock;
241 x86_cpuinit.setup_percpu_clockev = setup_secondary_APIC_clock;
242 return;
243 }
244 /* we need at least one APB timer */
Jacob Pan3746c6b2010-02-12 05:01:12 -0800245 pre_init_apic_IRQ0();
246 apbt_time_init();
247}
248
Luis R. Rodriguez8fab6af2011-05-06 15:00:09 -0700249static void __cpuinit mrst_arch_setup(void)
Jacob Pan3746c6b2010-02-12 05:01:12 -0800250{
Jacob Pana0c173b2010-05-19 12:01:24 -0700251 if (boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model == 0x27)
H. Peter Anvina75af582010-05-19 13:40:14 -0700252 __mrst_cpu_chip = MRST_CPU_CHIP_PENWELL;
Jacob Pana0c173b2010-05-19 12:01:24 -0700253 else {
Alan Cox1a8359e2012-01-26 17:33:30 +0000254 pr_err("Unknown Intel MID CPU (%d:%d), default to Penwell\n",
Jacob Pana0c173b2010-05-19 12:01:24 -0700255 boot_cpu_data.x86, boot_cpu_data.x86_model);
Alan Cox1a8359e2012-01-26 17:33:30 +0000256 __mrst_cpu_chip = MRST_CPU_CHIP_PENWELL;
Jacob Pana0c173b2010-05-19 12:01:24 -0700257 }
Jacob Pana0c173b2010-05-19 12:01:24 -0700258}
Jacob Pan3746c6b2010-02-12 05:01:12 -0800259
Feng Tang6d2cce62010-07-05 23:03:19 +0800260/* MID systems don't have i8042 controller */
261static int mrst_i8042_detect(void)
262{
263 return 0;
264}
265
Jacob Pan3746c6b2010-02-12 05:01:12 -0800266/*
Jacob Pan064a59b2011-11-10 13:43:05 +0000267 * Moorestown does not have external NMI source nor port 0x61 to report
268 * NMI status. The possible NMI sources are from pmu as a result of NMI
269 * watchdog or lock debug. Reading io port 0x61 results in 0xff which
270 * misled NMI handler.
271 */
272static unsigned char mrst_get_nmi_reason(void)
273{
274 return 0;
275}
276
277/*
Thomas Gleixner3f4110a2009-08-29 14:54:20 +0200278 * Moorestown specific x86_init function overrides and early setup
279 * calls.
280 */
281void __init x86_mrst_early_setup(void)
282{
283 x86_init.resources.probe_roms = x86_init_noop;
284 x86_init.resources.reserve_resources = x86_init_noop;
Jacob Pan5b78b672010-02-12 02:29:11 -0800285
Jacob Pan3746c6b2010-02-12 05:01:12 -0800286 x86_init.timers.timer_init = mrst_time_init;
Jacob Pana875c012010-05-19 12:01:25 -0700287 x86_init.timers.setup_percpu_clockev = x86_init_noop;
Jacob Pan3746c6b2010-02-12 05:01:12 -0800288
289 x86_init.irqs.pre_vector_init = x86_init_noop;
290
Jacob Pana0c173b2010-05-19 12:01:24 -0700291 x86_init.oem.arch_setup = mrst_arch_setup;
292
Jacob Pana875c012010-05-19 12:01:25 -0700293 x86_cpuinit.setup_percpu_clockev = apbt_setup_secondary_clock;
Jacob Pan3746c6b2010-02-12 05:01:12 -0800294
295 x86_platform.calibrate_tsc = mrst_calibrate_tsc;
Feng Tang6d2cce62010-07-05 23:03:19 +0800296 x86_platform.i8042_detect = mrst_i8042_detect;
Feng Tang168202c2011-02-15 00:13:32 +0800297 x86_init.timers.wallclock_init = mrst_rtc_init;
Jacob Pan064a59b2011-11-10 13:43:05 +0000298 x86_platform.get_nmi_reason = mrst_get_nmi_reason;
299
Jacob Panaf2730f2010-02-12 10:31:47 -0800300 x86_init.pci.init = pci_mrst_init;
301 x86_init.pci.fixup_irqs = x86_init_noop;
302
Jacob Pan5b78b672010-02-12 02:29:11 -0800303 legacy_pic = &null_legacy_pic;
Jacob Panfea24e22010-05-14 14:41:20 -0700304
Alek Ducfb505a2010-11-10 16:50:08 +0000305 /* Moorestown specific power_off/restart method */
306 pm_power_off = mrst_power_off;
307 machine_ops.emergency_restart = mrst_reboot;
308
Jacob Panfea24e22010-05-14 14:41:20 -0700309 /* Avoid searching for BIOS MP tables */
310 x86_init.mpparse.find_smp_config = x86_init_noop;
311 x86_init.mpparse.get_smp_config = x86_init_uint_noop;
Jacob Pan9d90e492011-04-08 11:23:00 -0700312 set_bit(MP_BUS_ISA, mp_bus_not_pci);
Thomas Gleixner3f4110a2009-08-29 14:54:20 +0200313}
Jacob Pana875c012010-05-19 12:01:25 -0700314
315/*
316 * if user does not want to use per CPU apb timer, just give it a lower rating
317 * than local apic timer and skip the late per cpu timer init.
318 */
319static inline int __init setup_x86_mrst_timer(char *arg)
320{
321 if (!arg)
322 return -EINVAL;
323
324 if (strcmp("apbt_only", arg) == 0)
325 mrst_timer_options = MRST_TIMER_APBT_ONLY;
326 else if (strcmp("lapic_and_apbt", arg) == 0)
327 mrst_timer_options = MRST_TIMER_LAPIC_APBT;
328 else {
329 pr_warning("X86 MRST timer option %s not recognised"
330 " use x86_mrst_timer=apbt_only or lapic_and_apbt\n",
331 arg);
332 return -EINVAL;
333 }
334 return 0;
335}
336__setup("x86_mrst_timer=", setup_x86_mrst_timer);
Feng Tang1da4b1c2010-11-09 11:22:58 +0000337
338/*
339 * Parsing GPIO table first, since the DEVS table will need this table
340 * to map the pin name to the actual pin.
341 */
342static struct sfi_gpio_table_entry *gpio_table;
343static int gpio_num_entry;
344
345static int __init sfi_parse_gpio(struct sfi_table_header *table)
346{
347 struct sfi_table_simple *sb;
348 struct sfi_gpio_table_entry *pentry;
349 int num, i;
350
351 if (gpio_table)
352 return 0;
353 sb = (struct sfi_table_simple *)table;
354 num = SFI_GET_NUM_ENTRIES(sb, struct sfi_gpio_table_entry);
355 pentry = (struct sfi_gpio_table_entry *)sb->pentry;
356
357 gpio_table = (struct sfi_gpio_table_entry *)
358 kmalloc(num * sizeof(*pentry), GFP_KERNEL);
359 if (!gpio_table)
360 return -1;
361 memcpy(gpio_table, pentry, num * sizeof(*pentry));
362 gpio_num_entry = num;
363
364 pr_debug("GPIO pin info:\n");
365 for (i = 0; i < num; i++, pentry++)
366 pr_debug("info[%2d]: controller = %16.16s, pin_name = %16.16s,"
367 " pin = %d\n", i,
368 pentry->controller_name,
369 pentry->pin_name,
370 pentry->pin_no);
371 return 0;
372}
373
374static int get_gpio_by_name(const char *name)
375{
376 struct sfi_gpio_table_entry *pentry = gpio_table;
377 int i;
378
379 if (!pentry)
380 return -1;
381 for (i = 0; i < gpio_num_entry; i++, pentry++) {
382 if (!strncmp(name, pentry->pin_name, SFI_NAME_LEN))
383 return pentry->pin_no;
384 }
385 return -1;
386}
387
388/*
389 * Here defines the array of devices platform data that IAFW would export
390 * through SFI "DEVS" table, we use name and type to match the device and
391 * its platform data.
392 */
393struct devs_id {
394 char name[SFI_NAME_LEN + 1];
395 u8 type;
396 u8 delay;
397 void *(*get_platform_data)(void *info);
398};
399
400/* the offset for the mapping of global gpio pin to irq */
401#define MRST_IRQ_OFFSET 0x100
402
403static void __init *pmic_gpio_platform_data(void *info)
404{
405 static struct intel_pmic_gpio_platform_data pmic_gpio_pdata;
406 int gpio_base = get_gpio_by_name("pmic_gpio_base");
407
408 if (gpio_base == -1)
409 gpio_base = 64;
410 pmic_gpio_pdata.gpio_base = gpio_base;
411 pmic_gpio_pdata.irq_base = gpio_base + MRST_IRQ_OFFSET;
412 pmic_gpio_pdata.gpiointr = 0xffffeff8;
413
414 return &pmic_gpio_pdata;
415}
416
417static void __init *max3111_platform_data(void *info)
418{
419 struct spi_board_info *spi_info = info;
420 int intr = get_gpio_by_name("max3111_int");
421
Feng Tangefe3ed92011-08-26 11:25:14 +0100422 spi_info->mode = SPI_MODE_0;
Feng Tang1da4b1c2010-11-09 11:22:58 +0000423 if (intr == -1)
424 return NULL;
425 spi_info->irq = intr + MRST_IRQ_OFFSET;
426 return NULL;
427}
428
429/* we have multiple max7315 on the board ... */
430#define MAX7315_NUM 2
431static void __init *max7315_platform_data(void *info)
432{
433 static struct pca953x_platform_data max7315_pdata[MAX7315_NUM];
434 static int nr;
435 struct pca953x_platform_data *max7315 = &max7315_pdata[nr];
436 struct i2c_board_info *i2c_info = info;
437 int gpio_base, intr;
438 char base_pin_name[SFI_NAME_LEN + 1];
439 char intr_pin_name[SFI_NAME_LEN + 1];
440
441 if (nr == MAX7315_NUM) {
442 pr_err("too many max7315s, we only support %d\n",
443 MAX7315_NUM);
444 return NULL;
445 }
446 /* we have several max7315 on the board, we only need load several
447 * instances of the same pca953x driver to cover them
448 */
449 strcpy(i2c_info->type, "max7315");
450 if (nr++) {
451 sprintf(base_pin_name, "max7315_%d_base", nr);
452 sprintf(intr_pin_name, "max7315_%d_int", nr);
453 } else {
454 strcpy(base_pin_name, "max7315_base");
455 strcpy(intr_pin_name, "max7315_int");
456 }
457
458 gpio_base = get_gpio_by_name(base_pin_name);
459 intr = get_gpio_by_name(intr_pin_name);
460
461 if (gpio_base == -1)
462 return NULL;
463 max7315->gpio_base = gpio_base;
464 if (intr != -1) {
465 i2c_info->irq = intr + MRST_IRQ_OFFSET;
466 max7315->irq_base = gpio_base + MRST_IRQ_OFFSET;
467 } else {
468 i2c_info->irq = -1;
469 max7315->irq_base = -1;
470 }
471 return max7315;
472}
473
Jekyll Lai28744b32011-11-16 18:01:20 +0000474static void *tca6416_platform_data(void *info)
475{
476 static struct pca953x_platform_data tca6416;
477 struct i2c_board_info *i2c_info = info;
478 int gpio_base, intr;
479 char base_pin_name[SFI_NAME_LEN + 1];
480 char intr_pin_name[SFI_NAME_LEN + 1];
481
482 strcpy(i2c_info->type, "tca6416");
483 strcpy(base_pin_name, "tca6416_base");
484 strcpy(intr_pin_name, "tca6416_int");
485
486 gpio_base = get_gpio_by_name(base_pin_name);
487 intr = get_gpio_by_name(intr_pin_name);
488
489 if (gpio_base == -1)
490 return NULL;
491 tca6416.gpio_base = gpio_base;
492 if (intr != -1) {
493 i2c_info->irq = intr + MRST_IRQ_OFFSET;
494 tca6416.irq_base = gpio_base + MRST_IRQ_OFFSET;
495 } else {
496 i2c_info->irq = -1;
497 tca6416.irq_base = -1;
498 }
499 return &tca6416;
500}
501
502static void *mpu3050_platform_data(void *info)
503{
504 struct i2c_board_info *i2c_info = info;
505 int intr = get_gpio_by_name("mpu3050_int");
506
507 if (intr == -1)
508 return NULL;
509
510 i2c_info->irq = intr + MRST_IRQ_OFFSET;
511 return NULL;
512}
513
Feng Tang1da4b1c2010-11-09 11:22:58 +0000514static void __init *emc1403_platform_data(void *info)
515{
516 static short intr2nd_pdata;
517 struct i2c_board_info *i2c_info = info;
518 int intr = get_gpio_by_name("thermal_int");
519 int intr2nd = get_gpio_by_name("thermal_alert");
520
521 if (intr == -1 || intr2nd == -1)
522 return NULL;
523
524 i2c_info->irq = intr + MRST_IRQ_OFFSET;
525 intr2nd_pdata = intr2nd + MRST_IRQ_OFFSET;
526
527 return &intr2nd_pdata;
528}
529
530static void __init *lis331dl_platform_data(void *info)
531{
532 static short intr2nd_pdata;
533 struct i2c_board_info *i2c_info = info;
534 int intr = get_gpio_by_name("accel_int");
535 int intr2nd = get_gpio_by_name("accel_2");
536
537 if (intr == -1 || intr2nd == -1)
538 return NULL;
539
540 i2c_info->irq = intr + MRST_IRQ_OFFSET;
541 intr2nd_pdata = intr2nd + MRST_IRQ_OFFSET;
542
543 return &intr2nd_pdata;
544}
545
Vinod Koul86071532010-11-10 17:40:48 +0000546static void __init *no_platform_data(void *info)
547{
548 return NULL;
549}
550
Mika Westerberg360545c2011-10-18 12:41:22 +0300551static struct resource msic_resources[] = {
552 {
553 .start = INTEL_MSIC_IRQ_PHYS_BASE,
554 .end = INTEL_MSIC_IRQ_PHYS_BASE + 64 - 1,
555 .flags = IORESOURCE_MEM,
556 },
557};
558
559static struct intel_msic_platform_data msic_pdata;
560
561static struct platform_device msic_device = {
562 .name = "intel_msic",
563 .id = -1,
564 .dev = {
565 .platform_data = &msic_pdata,
566 },
567 .num_resources = ARRAY_SIZE(msic_resources),
568 .resource = msic_resources,
569};
570
571static inline bool mrst_has_msic(void)
572{
573 return mrst_identify_cpu() == MRST_CPU_CHIP_PENWELL;
574}
575
576static int msic_scu_status_change(struct notifier_block *nb,
577 unsigned long code, void *data)
578{
579 if (code == SCU_DOWN) {
580 platform_device_unregister(&msic_device);
581 return 0;
582 }
583
584 return platform_device_register(&msic_device);
585}
586
587static int __init msic_init(void)
588{
589 static struct notifier_block msic_scu_notifier = {
590 .notifier_call = msic_scu_status_change,
591 };
592
593 /*
594 * We need to be sure that the SCU IPC is ready before MSIC device
595 * can be registered.
596 */
597 if (mrst_has_msic())
598 intel_scu_notifier_add(&msic_scu_notifier);
599
600 return 0;
601}
602arch_initcall(msic_init);
603
604/*
605 * msic_generic_platform_data - sets generic platform data for the block
606 * @info: pointer to the SFI device table entry for this block
607 * @block: MSIC block
608 *
609 * Function sets IRQ number from the SFI table entry for given device to
610 * the MSIC platform data.
611 */
612static void *msic_generic_platform_data(void *info, enum intel_msic_block block)
613{
614 struct sfi_device_table_entry *entry = info;
615
616 BUG_ON(block < 0 || block >= INTEL_MSIC_BLOCK_LAST);
617 msic_pdata.irq[block] = entry->irq;
618
619 return no_platform_data(info);
620}
621
622static void *msic_battery_platform_data(void *info)
623{
624 return msic_generic_platform_data(info, INTEL_MSIC_BLOCK_BATTERY);
625}
626
627static void *msic_gpio_platform_data(void *info)
628{
629 static struct intel_msic_gpio_pdata pdata;
630 int gpio = get_gpio_by_name("msic_gpio_base");
631
632 if (gpio < 0)
633 return NULL;
634
635 pdata.gpio_base = gpio;
636 msic_pdata.gpio = &pdata;
637
638 return msic_generic_platform_data(info, INTEL_MSIC_BLOCK_GPIO);
639}
640
641static void *msic_audio_platform_data(void *info)
642{
643 struct platform_device *pdev;
644
645 pdev = platform_device_register_simple("sst-platform", -1, NULL, 0);
646 if (IS_ERR(pdev)) {
647 pr_err("failed to create audio platform device\n");
648 return NULL;
649 }
650
651 return msic_generic_platform_data(info, INTEL_MSIC_BLOCK_AUDIO);
652}
653
654static void *msic_power_btn_platform_data(void *info)
655{
656 return msic_generic_platform_data(info, INTEL_MSIC_BLOCK_POWER_BTN);
657}
658
659static void *msic_ocd_platform_data(void *info)
660{
661 static struct intel_msic_ocd_pdata pdata;
662 int gpio = get_gpio_by_name("ocd_gpio");
663
664 if (gpio < 0)
665 return NULL;
666
667 pdata.gpio = gpio;
668 msic_pdata.ocd = &pdata;
669
670 return msic_generic_platform_data(info, INTEL_MSIC_BLOCK_OCD);
671}
672
Feng Tang1da4b1c2010-11-09 11:22:58 +0000673static const struct devs_id __initconst device_ids[] = {
William Douglas9f80d8b2011-11-10 13:50:38 +0000674 {"bma023", SFI_DEV_TYPE_I2C, 1, &no_platform_data},
Feng Tang1da4b1c2010-11-09 11:22:58 +0000675 {"pmic_gpio", SFI_DEV_TYPE_SPI, 1, &pmic_gpio_platform_data},
Feng Tangefa22122011-11-16 18:32:34 +0000676 {"pmic_gpio", SFI_DEV_TYPE_IPC, 1, &pmic_gpio_platform_data},
Feng Tang1da4b1c2010-11-09 11:22:58 +0000677 {"spi_max3111", SFI_DEV_TYPE_SPI, 0, &max3111_platform_data},
678 {"i2c_max7315", SFI_DEV_TYPE_I2C, 1, &max7315_platform_data},
679 {"i2c_max7315_2", SFI_DEV_TYPE_I2C, 1, &max7315_platform_data},
Jekyll Lai28744b32011-11-16 18:01:20 +0000680 {"tca6416", SFI_DEV_TYPE_I2C, 1, &tca6416_platform_data},
Feng Tang1da4b1c2010-11-09 11:22:58 +0000681 {"emc1403", SFI_DEV_TYPE_I2C, 1, &emc1403_platform_data},
682 {"i2c_accel", SFI_DEV_TYPE_I2C, 0, &lis331dl_platform_data},
Vinod Koul86071532010-11-10 17:40:48 +0000683 {"pmic_audio", SFI_DEV_TYPE_IPC, 1, &no_platform_data},
Jekyll Lai28744b32011-11-16 18:01:20 +0000684 {"mpu3050", SFI_DEV_TYPE_I2C, 1, &mpu3050_platform_data},
Mika Westerberg360545c2011-10-18 12:41:22 +0300685
686 /* MSIC subdevices */
687 {"msic_battery", SFI_DEV_TYPE_IPC, 1, &msic_battery_platform_data},
688 {"msic_gpio", SFI_DEV_TYPE_IPC, 1, &msic_gpio_platform_data},
689 {"msic_audio", SFI_DEV_TYPE_IPC, 1, &msic_audio_platform_data},
690 {"msic_power_btn", SFI_DEV_TYPE_IPC, 1, &msic_power_btn_platform_data},
691 {"msic_ocd", SFI_DEV_TYPE_IPC, 1, &msic_ocd_platform_data},
692
Feng Tang1da4b1c2010-11-09 11:22:58 +0000693 {},
694};
695
696#define MAX_IPCDEVS 24
697static struct platform_device *ipc_devs[MAX_IPCDEVS];
698static int ipc_next_dev;
699
700#define MAX_SCU_SPI 24
701static struct spi_board_info *spi_devs[MAX_SCU_SPI];
702static int spi_next_dev;
703
704#define MAX_SCU_I2C 24
705static struct i2c_board_info *i2c_devs[MAX_SCU_I2C];
706static int i2c_bus[MAX_SCU_I2C];
707static int i2c_next_dev;
708
709static void __init intel_scu_device_register(struct platform_device *pdev)
710{
711 if(ipc_next_dev == MAX_IPCDEVS)
712 pr_err("too many SCU IPC devices");
713 else
714 ipc_devs[ipc_next_dev++] = pdev;
715}
716
717static void __init intel_scu_spi_device_register(struct spi_board_info *sdev)
718{
719 struct spi_board_info *new_dev;
720
721 if (spi_next_dev == MAX_SCU_SPI) {
722 pr_err("too many SCU SPI devices");
723 return;
724 }
725
726 new_dev = kzalloc(sizeof(*sdev), GFP_KERNEL);
727 if (!new_dev) {
728 pr_err("failed to alloc mem for delayed spi dev %s\n",
729 sdev->modalias);
730 return;
731 }
732 memcpy(new_dev, sdev, sizeof(*sdev));
733
734 spi_devs[spi_next_dev++] = new_dev;
735}
736
737static void __init intel_scu_i2c_device_register(int bus,
738 struct i2c_board_info *idev)
739{
740 struct i2c_board_info *new_dev;
741
742 if (i2c_next_dev == MAX_SCU_I2C) {
743 pr_err("too many SCU I2C devices");
744 return;
745 }
746
747 new_dev = kzalloc(sizeof(*idev), GFP_KERNEL);
748 if (!new_dev) {
749 pr_err("failed to alloc mem for delayed i2c dev %s\n",
750 idev->type);
751 return;
752 }
753 memcpy(new_dev, idev, sizeof(*idev));
754
755 i2c_bus[i2c_next_dev] = bus;
756 i2c_devs[i2c_next_dev++] = new_dev;
757}
758
Alan Cox42c25442011-09-07 16:06:51 +0300759BLOCKING_NOTIFIER_HEAD(intel_scu_notifier);
760EXPORT_SYMBOL_GPL(intel_scu_notifier);
761
Feng Tang1da4b1c2010-11-09 11:22:58 +0000762/* Called by IPC driver */
763void intel_scu_devices_create(void)
764{
765 int i;
766
767 for (i = 0; i < ipc_next_dev; i++)
768 platform_device_add(ipc_devs[i]);
769
770 for (i = 0; i < spi_next_dev; i++)
771 spi_register_board_info(spi_devs[i], 1);
772
773 for (i = 0; i < i2c_next_dev; i++) {
774 struct i2c_adapter *adapter;
775 struct i2c_client *client;
776
777 adapter = i2c_get_adapter(i2c_bus[i]);
778 if (adapter) {
779 client = i2c_new_device(adapter, i2c_devs[i]);
780 if (!client)
781 pr_err("can't create i2c device %s\n",
782 i2c_devs[i]->type);
783 } else
784 i2c_register_board_info(i2c_bus[i], i2c_devs[i], 1);
785 }
Alan Cox42c25442011-09-07 16:06:51 +0300786 intel_scu_notifier_post(SCU_AVAILABLE, 0L);
Feng Tang1da4b1c2010-11-09 11:22:58 +0000787}
788EXPORT_SYMBOL_GPL(intel_scu_devices_create);
789
790/* Called by IPC driver */
791void intel_scu_devices_destroy(void)
792{
793 int i;
794
Alan Cox42c25442011-09-07 16:06:51 +0300795 intel_scu_notifier_post(SCU_DOWN, 0L);
796
Feng Tang1da4b1c2010-11-09 11:22:58 +0000797 for (i = 0; i < ipc_next_dev; i++)
798 platform_device_del(ipc_devs[i]);
799}
800EXPORT_SYMBOL_GPL(intel_scu_devices_destroy);
801
802static void __init install_irq_resource(struct platform_device *pdev, int irq)
803{
804 /* Single threaded */
805 static struct resource __initdata res = {
806 .name = "IRQ",
807 .flags = IORESOURCE_IRQ,
808 };
809 res.start = irq;
810 platform_device_add_resources(pdev, &res, 1);
811}
812
Mika Westerberg360545c2011-10-18 12:41:22 +0300813static void __init sfi_handle_ipc_dev(struct sfi_device_table_entry *entry)
Feng Tang1da4b1c2010-11-09 11:22:58 +0000814{
815 const struct devs_id *dev = device_ids;
Mika Westerberg360545c2011-10-18 12:41:22 +0300816 struct platform_device *pdev;
Feng Tang1da4b1c2010-11-09 11:22:58 +0000817 void *pdata = NULL;
818
819 while (dev->name[0]) {
820 if (dev->type == SFI_DEV_TYPE_IPC &&
Mika Westerberg360545c2011-10-18 12:41:22 +0300821 !strncmp(dev->name, entry->name, SFI_NAME_LEN)) {
822 pdata = dev->get_platform_data(entry);
Feng Tang1da4b1c2010-11-09 11:22:58 +0000823 break;
824 }
825 dev++;
826 }
Mika Westerberg360545c2011-10-18 12:41:22 +0300827
828 /*
829 * On Medfield the platform device creation is handled by the MSIC
830 * MFD driver so we don't need to do it here.
831 */
832 if (mrst_has_msic())
833 return;
834
Alan Cox54b02642011-11-16 18:17:40 +0000835 pdev = platform_device_alloc(entry->name, 0);
Mika Westerberg360545c2011-10-18 12:41:22 +0300836 if (pdev == NULL) {
837 pr_err("out of memory for SFI platform device '%s'.\n",
838 entry->name);
839 return;
840 }
841 install_irq_resource(pdev, entry->irq);
842
Feng Tang1da4b1c2010-11-09 11:22:58 +0000843 pdev->dev.platform_data = pdata;
844 intel_scu_device_register(pdev);
845}
846
847static void __init sfi_handle_spi_dev(struct spi_board_info *spi_info)
848{
849 const struct devs_id *dev = device_ids;
850 void *pdata = NULL;
851
852 while (dev->name[0]) {
853 if (dev->type == SFI_DEV_TYPE_SPI &&
854 !strncmp(dev->name, spi_info->modalias, SFI_NAME_LEN)) {
855 pdata = dev->get_platform_data(spi_info);
856 break;
857 }
858 dev++;
859 }
860 spi_info->platform_data = pdata;
861 if (dev->delay)
862 intel_scu_spi_device_register(spi_info);
863 else
864 spi_register_board_info(spi_info, 1);
865}
866
867static void __init sfi_handle_i2c_dev(int bus, struct i2c_board_info *i2c_info)
868{
869 const struct devs_id *dev = device_ids;
870 void *pdata = NULL;
871
872 while (dev->name[0]) {
873 if (dev->type == SFI_DEV_TYPE_I2C &&
874 !strncmp(dev->name, i2c_info->type, SFI_NAME_LEN)) {
875 pdata = dev->get_platform_data(i2c_info);
876 break;
877 }
878 dev++;
879 }
880 i2c_info->platform_data = pdata;
881
882 if (dev->delay)
883 intel_scu_i2c_device_register(bus, i2c_info);
884 else
885 i2c_register_board_info(bus, i2c_info, 1);
886 }
887
888
889static int __init sfi_parse_devs(struct sfi_table_header *table)
890{
891 struct sfi_table_simple *sb;
892 struct sfi_device_table_entry *pentry;
893 struct spi_board_info spi_info;
894 struct i2c_board_info i2c_info;
Feng Tang1da4b1c2010-11-09 11:22:58 +0000895 int num, i, bus;
896 int ioapic;
897 struct io_apic_irq_attr irq_attr;
898
899 sb = (struct sfi_table_simple *)table;
900 num = SFI_GET_NUM_ENTRIES(sb, struct sfi_device_table_entry);
901 pentry = (struct sfi_device_table_entry *)sb->pentry;
902
903 for (i = 0; i < num; i++, pentry++) {
Mika Westerberg153b19a2011-10-13 12:04:20 +0300904 int irq = pentry->irq;
905
906 if (irq != (u8)0xff) { /* native RTE case */
Feng Tang1da4b1c2010-11-09 11:22:58 +0000907 /* these SPI2 devices are not exposed to system as PCI
908 * devices, but they have separate RTE entry in IOAPIC
909 * so we have to enable them one by one here
910 */
Mika Westerberg153b19a2011-10-13 12:04:20 +0300911 ioapic = mp_find_ioapic(irq);
Feng Tang1da4b1c2010-11-09 11:22:58 +0000912 irq_attr.ioapic = ioapic;
Mika Westerberg153b19a2011-10-13 12:04:20 +0300913 irq_attr.ioapic_pin = irq;
Feng Tang1da4b1c2010-11-09 11:22:58 +0000914 irq_attr.trigger = 1;
915 irq_attr.polarity = 1;
Mika Westerberg153b19a2011-10-13 12:04:20 +0300916 io_apic_set_pci_routing(NULL, irq, &irq_attr);
Kirill A. Shutemova94cc4e2011-08-26 12:20:59 +0100917 } else
Mika Westerberg153b19a2011-10-13 12:04:20 +0300918 irq = 0; /* No irq */
Kirill A. Shutemova94cc4e2011-08-26 12:20:59 +0100919
Feng Tang1da4b1c2010-11-09 11:22:58 +0000920 switch (pentry->type) {
921 case SFI_DEV_TYPE_IPC:
Feng Tang1da4b1c2010-11-09 11:22:58 +0000922 pr_debug("info[%2d]: IPC bus, name = %16.16s, "
Mika Westerberg360545c2011-10-18 12:41:22 +0300923 "irq = 0x%2x\n", i, pentry->name, pentry->irq);
924 sfi_handle_ipc_dev(pentry);
Feng Tang1da4b1c2010-11-09 11:22:58 +0000925 break;
926 case SFI_DEV_TYPE_SPI:
927 memset(&spi_info, 0, sizeof(spi_info));
928 strncpy(spi_info.modalias, pentry->name, SFI_NAME_LEN);
Mika Westerberg153b19a2011-10-13 12:04:20 +0300929 spi_info.irq = irq;
Feng Tang1da4b1c2010-11-09 11:22:58 +0000930 spi_info.bus_num = pentry->host_num;
931 spi_info.chip_select = pentry->addr;
932 spi_info.max_speed_hz = pentry->max_freq;
933 pr_debug("info[%2d]: SPI bus = %d, name = %16.16s, "
934 "irq = 0x%2x, max_freq = %d, cs = %d\n", i,
935 spi_info.bus_num,
936 spi_info.modalias,
937 spi_info.irq,
938 spi_info.max_speed_hz,
939 spi_info.chip_select);
940 sfi_handle_spi_dev(&spi_info);
941 break;
942 case SFI_DEV_TYPE_I2C:
943 memset(&i2c_info, 0, sizeof(i2c_info));
944 bus = pentry->host_num;
945 strncpy(i2c_info.type, pentry->name, SFI_NAME_LEN);
Mika Westerberg153b19a2011-10-13 12:04:20 +0300946 i2c_info.irq = irq;
Feng Tang1da4b1c2010-11-09 11:22:58 +0000947 i2c_info.addr = pentry->addr;
948 pr_debug("info[%2d]: I2C bus = %d, name = %16.16s, "
949 "irq = 0x%2x, addr = 0x%x\n", i, bus,
950 i2c_info.type,
951 i2c_info.irq,
952 i2c_info.addr);
953 sfi_handle_i2c_dev(bus, &i2c_info);
954 break;
955 case SFI_DEV_TYPE_UART:
956 case SFI_DEV_TYPE_HSI:
957 default:
958 ;
959 }
960 }
961 return 0;
962}
963
964static int __init mrst_platform_init(void)
965{
966 sfi_table_parse(SFI_SIG_GPIO, NULL, NULL, sfi_parse_gpio);
967 sfi_table_parse(SFI_SIG_DEVS, NULL, NULL, sfi_parse_devs);
968 return 0;
969}
970arch_initcall(mrst_platform_init);
971
972/*
973 * we will search these buttons in SFI GPIO table (by name)
974 * and register them dynamically. Please add all possible
975 * buttons here, we will shrink them if no GPIO found.
976 */
977static struct gpio_keys_button gpio_button[] = {
978 {KEY_POWER, -1, 1, "power_btn", EV_KEY, 0, 3000},
979 {KEY_PROG1, -1, 1, "prog_btn1", EV_KEY, 0, 20},
980 {KEY_PROG2, -1, 1, "prog_btn2", EV_KEY, 0, 20},
981 {SW_LID, -1, 1, "lid_switch", EV_SW, 0, 20},
982 {KEY_VOLUMEUP, -1, 1, "vol_up", EV_KEY, 0, 20},
983 {KEY_VOLUMEDOWN, -1, 1, "vol_down", EV_KEY, 0, 20},
984 {KEY_CAMERA, -1, 1, "camera_full", EV_KEY, 0, 20},
985 {KEY_CAMERA_FOCUS, -1, 1, "camera_half", EV_KEY, 0, 20},
986 {SW_KEYPAD_SLIDE, -1, 1, "MagSw1", EV_SW, 0, 20},
987 {SW_KEYPAD_SLIDE, -1, 1, "MagSw2", EV_SW, 0, 20},
988};
989
990static struct gpio_keys_platform_data mrst_gpio_keys = {
991 .buttons = gpio_button,
992 .rep = 1,
993 .nbuttons = -1, /* will fill it after search */
994};
995
996static struct platform_device pb_device = {
997 .name = "gpio-keys",
998 .id = -1,
999 .dev = {
1000 .platform_data = &mrst_gpio_keys,
1001 },
1002};
1003
1004/*
1005 * Shrink the non-existent buttons, register the gpio button
1006 * device if there is some
1007 */
1008static int __init pb_keys_init(void)
1009{
1010 struct gpio_keys_button *gb = gpio_button;
1011 int i, num, good = 0;
1012
1013 num = sizeof(gpio_button) / sizeof(struct gpio_keys_button);
1014 for (i = 0; i < num; i++) {
1015 gb[i].gpio = get_gpio_by_name(gb[i].desc);
Michael Demeterd79a8862011-12-15 22:31:23 +00001016 pr_debug("info[%2d]: name = %s, gpio = %d\n", i, gb[i].desc, gb[i].gpio);
Feng Tang1da4b1c2010-11-09 11:22:58 +00001017 if (gb[i].gpio == -1)
1018 continue;
1019
1020 if (i != good)
1021 gb[good] = gb[i];
1022 good++;
1023 }
1024
1025 if (good) {
1026 mrst_gpio_keys.nbuttons = good;
1027 return platform_device_register(&pb_device);
1028 }
1029 return 0;
1030}
1031late_initcall(pb_keys_init);