Blame view

arch/arm/mach-s3c2440/mach-gta02.c 14 KB
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  /*
   * linux/arch/arm/mach-s3c2442/mach-gta02.c
   *
   * S3C2442 Machine Support for Openmoko GTA02 / FreeRunner.
   *
   * Copyright (C) 2006-2009 by Openmoko, Inc.
   * Authors: Harald Welte <laforge@openmoko.org>
   *          Andy Green <andy@openmoko.org>
   *          Werner Almesberger <werner@openmoko.org>
   * All rights reserved.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License as
   * published by the Free Software Foundation; either version 2 of
   * the License, or (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
   * MA 02111-1307 USA
   *
   */
  
  #include <linux/kernel.h>
  #include <linux/types.h>
  #include <linux/interrupt.h>
  #include <linux/list.h>
  #include <linux/delay.h>
  #include <linux/timer.h>
  #include <linux/init.h>
  #include <linux/gpio.h>
  #include <linux/workqueue.h>
  #include <linux/platform_device.h>
  #include <linux/serial_core.h>
  #include <linux/spi/spi.h>
  
  #include <linux/mmc/host.h>
  
  #include <linux/mtd/mtd.h>
  #include <linux/mtd/nand.h>
  #include <linux/mtd/nand_ecc.h>
  #include <linux/mtd/partitions.h>
  #include <linux/mtd/physmap.h>
  #include <linux/io.h>
  
  #include <linux/i2c.h>
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
52
53
54
55
56
57
58
  #include <linux/regulator/machine.h>
  
  #include <linux/mfd/pcf50633/core.h>
  #include <linux/mfd/pcf50633/mbc.h>
  #include <linux/mfd/pcf50633/adc.h>
  #include <linux/mfd/pcf50633/gpio.h>
  #include <linux/mfd/pcf50633/pmic.h>
67e67df8d   Lars-Peter Clausen   gta02: Use pcf506...
59
  #include <linux/mfd/pcf50633/backlight.h>
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
60

003ddede6   Lars-Peter Clausen   ARM: S3C2440: Add...
61
62
  #include <linux/input.h>
  #include <linux/gpio_keys.h>
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
63
64
65
66
67
68
69
70
71
72
73
74
75
  #include <asm/mach/arch.h>
  #include <asm/mach/map.h>
  #include <asm/mach/irq.h>
  
  #include <asm/irq.h>
  #include <asm/mach-types.h>
  
  #include <mach/regs-irq.h>
  #include <mach/regs-gpio.h>
  #include <mach/regs-gpioj.h>
  #include <mach/fb.h>
  
  #include <mach/spi.h>
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  #include <plat/usb-control.h>
  #include <mach/regs-mem.h>
  #include <mach/hardware.h>
  
  #include <mach/gta02.h>
  
  #include <plat/regs-serial.h>
  #include <plat/nand.h>
  #include <plat/devs.h>
  #include <plat/cpu.h>
  #include <plat/pm.h>
  #include <plat/udc.h>
  #include <plat/gpio-cfg.h>
  #include <plat/iic.h>
d73af1833   Lars-Peter Clausen   ARM: S3C2440: Add...
90
  #include <plat/ts.h>
b27b07279   Kukjin Kim   ARM: 7265/1: rest...
91
  #include "common.h"
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
92
93
94
95
  
  static struct pcf50633 *gta02_pcf;
  
  /*
c7ff0d9c9   TAMUKI Shoichi   panic: keep blink...
96
   * This gets called frequently when we paniced.
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
97
   */
c7ff0d9c9   TAMUKI Shoichi   panic: keep blink...
98
  static long gta02_panic_blink(int state)
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
99
100
  {
  	long delay = 0;
c7ff0d9c9   TAMUKI Shoichi   panic: keep blink...
101
  	char led;
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
102

c7ff0d9c9   TAMUKI Shoichi   panic: keep blink...
103
  	led = (state) ? 1 : 0;
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
104
  	gpio_direction_output(GTA02_GPIO_AUX_LED, led);
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
  	return delay;
  }
  
  
  static struct map_desc gta02_iodesc[] __initdata = {
  	{
  		.virtual	= 0xe0000000,
  		.pfn		= __phys_to_pfn(S3C2410_CS3 + 0x01000000),
  		.length		= SZ_1M,
  		.type		= MT_DEVICE
  	},
  };
  
  #define UCON (S3C2410_UCON_DEFAULT | S3C2443_UCON_RXERR_IRQEN)
  #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB)
  #define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE)
  
  static struct s3c2410_uartcfg gta02_uartcfgs[] = {
  	[0] = {
  		.hwport		= 0,
  		.flags		= 0,
  		.ucon		= UCON,
  		.ulcon		= ULCON,
  		.ufcon		= UFCON,
  	},
  	[1] = {
  		.hwport		= 1,
  		.flags		= 0,
  		.ucon		= UCON,
  		.ulcon		= ULCON,
  		.ufcon		= UFCON,
  	},
  	[2] = {
  		.hwport		= 2,
  		.flags		= 0,
  		.ucon		= UCON,
  		.ulcon		= ULCON,
  		.ufcon		= UFCON,
  	},
  };
  
  #ifdef CONFIG_CHARGER_PCF50633
  /*
   * On GTA02 the 1A charger features a 48K resistor to 0V on the ID pin.
   * We use this to recognize that we can pull 1A from the USB socket.
   *
   * These constants are the measured pcf50633 ADC levels with the 1A
   * charger / 48K resistor, and with no pulldown resistor.
   */
  
  #define ADC_NOM_CHG_DETECT_1A 6
  #define ADC_NOM_CHG_DETECT_USB 43
  
  static void
  gta02_configure_pmu_for_charger(struct pcf50633 *pcf, void *unused, int res)
  {
  	int  ma;
  
  	/* Interpret charger type */
  	if (res < ((ADC_NOM_CHG_DETECT_USB + ADC_NOM_CHG_DETECT_1A) / 2)) {
  
  		/*
  		 * Sanity - stop GPO driving out now that we have a 1A charger
  		 * GPO controls USB Host power generation on GTA02
  		 */
  		pcf50633_gpio_set(pcf, PCF50633_GPO, 0);
  
  		ma = 1000;
  	} else
  		ma = 100;
  
  	pcf50633_mbc_usb_curlim_set(pcf, ma);
  }
  
  static struct delayed_work gta02_charger_work;
  static int gta02_usb_vbus_draw;
  
  static void gta02_charger_worker(struct work_struct *work)
  {
  	if (gta02_usb_vbus_draw) {
  		pcf50633_mbc_usb_curlim_set(gta02_pcf, gta02_usb_vbus_draw);
  		return;
  	}
  
  #ifdef CONFIG_PCF50633_ADC
  	pcf50633_adc_async_read(gta02_pcf,
  				PCF50633_ADCC1_MUX_ADCIN1,
  				PCF50633_ADCC1_AVERAGE_16,
  				gta02_configure_pmu_for_charger,
  				NULL);
  #else
  	/*
  	 * If the PCF50633 ADC is disabled we fallback to a
  	 * 100mA limit for safety.
  	 */
  	pcf50633_mbc_usb_curlim_set(pcf, 100);
  #endif
  }
  
  #define GTA02_CHARGER_CONFIGURE_TIMEOUT ((3000 * HZ) / 1000)
  
  static void gta02_pmu_event_callback(struct pcf50633 *pcf, int irq)
  {
  	if (irq == PCF50633_IRQ_USBINS) {
  		schedule_delayed_work(&gta02_charger_work,
  				      GTA02_CHARGER_CONFIGURE_TIMEOUT);
  
  		return;
  	}
  
  	if (irq == PCF50633_IRQ_USBREM) {
  		cancel_delayed_work_sync(&gta02_charger_work);
  		gta02_usb_vbus_draw = 0;
  	}
  }
  
  static void gta02_udc_vbus_draw(unsigned int ma)
  {
  	if (!gta02_pcf)
  		return;
  
  	gta02_usb_vbus_draw = ma;
  
  	schedule_delayed_work(&gta02_charger_work,
  			      GTA02_CHARGER_CONFIGURE_TIMEOUT);
  }
  #else /* !CONFIG_CHARGER_PCF50633 */
  #define gta02_pmu_event_callback	NULL
  #define gta02_udc_vbus_draw		NULL
  #endif
  
  /*
   * This is called when pc50633 is probed, unfortunately quite late in the
   * day since it is an I2C bus device. Here we can belatedly define some
   * platform devices with the advantage that we can mark the pcf50633 as the
   * parent. This makes them get suspended and resumed with their parent
   * the pcf50633 still around.
   */
  
  static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf);
  
  
  static char *gta02_batteries[] = {
  	"battery",
  };
67e67df8d   Lars-Peter Clausen   gta02: Use pcf506...
250
251
252
253
254
  static struct pcf50633_bl_platform_data gta02_backlight_data = {
  	.default_brightness = 0x3f,
  	.default_brightness_limit = 0,
  	.ramp_time = 5,
  };
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
255
256
257
258
259
260
261
262
263
264
265
266
267
268
  struct pcf50633_platform_data gta02_pcf_pdata = {
  	.resumers = {
  		[0] =	PCF50633_INT1_USBINS |
  			PCF50633_INT1_USBREM |
  			PCF50633_INT1_ALARM,
  		[1] =	PCF50633_INT2_ONKEYF,
  		[2] =	PCF50633_INT3_ONKEY1S,
  		[3] =	PCF50633_INT4_LOWSYS |
  			PCF50633_INT4_LOWBAT |
  			PCF50633_INT4_HIGHTMP,
  	},
  
  	.batteries = gta02_batteries,
  	.num_batteries = ARRAY_SIZE(gta02_batteries),
2f745dde1   Lars-Peter Clausen   gta02: Set pcf506...
269
270
  
  	.charger_reference_current_ma = 1000,
67e67df8d   Lars-Peter Clausen   gta02: Use pcf506...
271
  	.backlight_data = &gta02_backlight_data,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
272
273
274
275
276
277
278
279
  	.reg_init_data = {
  		[PCF50633_REGULATOR_AUTO] = {
  			.constraints = {
  				.min_uV = 3300000,
  				.max_uV = 3300000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
  				.always_on = 1,
  				.apply_uV = 1,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
  			},
  		},
  		[PCF50633_REGULATOR_DOWN1] = {
  			.constraints = {
  				.min_uV = 1300000,
  				.max_uV = 1600000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
  				.always_on = 1,
  				.apply_uV = 1,
  			},
  		},
  		[PCF50633_REGULATOR_DOWN2] = {
  			.constraints = {
  				.min_uV = 1800000,
  				.max_uV = 1800000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
  				.apply_uV = 1,
  				.always_on = 1,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
298
299
300
301
302
303
304
  			},
  		},
  		[PCF50633_REGULATOR_HCLDO] = {
  			.constraints = {
  				.min_uV = 2000000,
  				.max_uV = 3300000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
7cda34407   Lars-Peter Clausen   ARM: S3C2440: Fix...
305
306
  				.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
  						REGULATOR_CHANGE_STATUS,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
307
308
309
310
311
312
313
  			},
  		},
  		[PCF50633_REGULATOR_LDO1] = {
  			.constraints = {
  				.min_uV = 3300000,
  				.max_uV = 3300000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
7cda34407   Lars-Peter Clausen   ARM: S3C2440: Fix...
314
  				.valid_ops_mask = REGULATOR_CHANGE_STATUS,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
315
  				.apply_uV = 1,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
  			},
  		},
  		[PCF50633_REGULATOR_LDO2] = {
  			.constraints = {
  				.min_uV = 3300000,
  				.max_uV = 3300000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
  				.apply_uV = 1,
  			},
  		},
  		[PCF50633_REGULATOR_LDO3] = {
  			.constraints = {
  				.min_uV = 3000000,
  				.max_uV = 3000000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
  				.apply_uV = 1,
  			},
  		},
  		[PCF50633_REGULATOR_LDO4] = {
  			.constraints = {
  				.min_uV = 3200000,
  				.max_uV = 3200000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
7cda34407   Lars-Peter Clausen   ARM: S3C2440: Fix...
339
  				.valid_ops_mask = REGULATOR_CHANGE_STATUS,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
340
341
342
343
344
345
346
347
  				.apply_uV = 1,
  			},
  		},
  		[PCF50633_REGULATOR_LDO5] = {
  			.constraints = {
  				.min_uV = 3000000,
  				.max_uV = 3000000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
7cda34407   Lars-Peter Clausen   ARM: S3C2440: Fix...
348
  				.valid_ops_mask = REGULATOR_CHANGE_STATUS,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
349
  				.apply_uV = 1,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
350
351
352
353
354
355
356
357
358
359
360
361
362
363
  			},
  		},
  		[PCF50633_REGULATOR_LDO6] = {
  			.constraints = {
  				.min_uV = 3000000,
  				.max_uV = 3000000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
  			},
  		},
  		[PCF50633_REGULATOR_MEMLDO] = {
  			.constraints = {
  				.min_uV = 1800000,
  				.max_uV = 1800000,
  				.valid_modes_mask = REGULATOR_MODE_NORMAL,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
  			},
  		},
  
  	},
  	.probe_done = gta02_pmu_attach_child_devices,
  	.mbc_event_callback = gta02_pmu_event_callback,
  };
  
  
  /* NOR Flash. */
  
  #define GTA02_FLASH_BASE	0x18000000 /* GCS3 */
  #define GTA02_FLASH_SIZE	0x200000 /* 2MBytes */
  
  static struct physmap_flash_data gta02_nor_flash_data = {
  	.width		= 2,
  };
  
  static struct resource gta02_nor_flash_resource = {
  	.start		= GTA02_FLASH_BASE,
  	.end		= GTA02_FLASH_BASE + GTA02_FLASH_SIZE - 1,
  	.flags		= IORESOURCE_MEM,
  };
  
  static struct platform_device gta02_nor_flash = {
  	.name		= "physmap-flash",
  	.id		= 0,
  	.dev		= {
  		.platform_data	= &gta02_nor_flash_data,
  	},
  	.resource	= &gta02_nor_flash_resource,
  	.num_resources	= 1,
  };
  
  
  struct platform_device s3c24xx_pwm_device = {
  	.name		= "s3c24xx_pwm",
  	.num_resources	= 0,
  };
6caa15d0b   Lars-Peter Clausen   ARM: s3c2440: gta...
403
404
405
  static struct platform_device gta02_dfbmcs320_device = {
  	.name = "dfbmcs320",
  };
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
406
407
408
409
410
411
412
413
414
415
  static struct i2c_board_info gta02_i2c_devs[] __initdata = {
  	{
  		I2C_BOARD_INFO("pcf50633", 0x73),
  		.irq = GTA02_IRQ_PCF50633,
  		.platform_data = &gta02_pcf_pdata,
  	},
  	{
  		I2C_BOARD_INFO("wm8753", 0x1a),
  	},
  };
2a3a18045   Ben Dooks   ARM: S3C: Add NAN...
416
  static struct s3c2410_nand_set __initdata gta02_nand_sets[] = {
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
417
418
419
420
421
422
423
424
425
  	[0] = {
  		/*
  		 * This name is also hard-coded in the boot loaders, so
  		 * changing it would would require all users to upgrade
  		 * their boot loaders, some of which are stored in a NOR
  		 * that is considered to be immutable.
  		 */
  		.name		= "neo1973-nand",
  		.nr_chips	= 1,
76609a692   Nelson Castillo   [ARM] GTA02: buil...
426
  		.flash_bbt	= 1,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
427
428
429
430
431
432
433
  	},
  };
  
  /*
   * Choose a set of timings derived from S3C@2442B MCP54
   * data sheet (K5D2G13ACM-D075 MCP Memory).
   */
2a3a18045   Ben Dooks   ARM: S3C: Add NAN...
434
  static struct s3c2410_platform_nand __initdata gta02_nand_info = {
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
435
436
437
438
439
440
  	.tacls		= 0,
  	.twrph0		= 25,
  	.twrph1		= 15,
  	.nr_sets	= ARRAY_SIZE(gta02_nand_sets),
  	.sets		= gta02_nand_sets,
  };
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
441
  /* Get PMU to set USB current limit accordingly. */
e27c3c5c7   Lars-Peter Clausen   ARM: s3c24xx: Swi...
442
  static struct s3c2410_udc_mach_info gta02_udc_cfg __initdata = {
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
443
  	.vbus_draw	= gta02_udc_vbus_draw,
e27c3c5c7   Lars-Peter Clausen   ARM: s3c24xx: Swi...
444
  	.pullup_pin = GTA02_GPIO_USB_PULLUP,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
445
  };
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
446
  /* USB */
f12675204   Ben Dooks   ARM: SAMSUNG: Add...
447
  static struct s3c2410_hcd_info gta02_usb_info __initdata = {
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
448
449
450
451
452
453
454
  	.port[0]	= {
  		.flags	= S3C_HCDFLG_USED,
  	},
  	.port[1]	= {
  		.flags	= 0,
  	},
  };
d73af1833   Lars-Peter Clausen   ARM: S3C2440: Add...
455
456
457
458
459
460
  /* Touchscreen */
  static struct s3c2410_ts_mach_info gta02_ts_info = {
  	.delay			= 10000,
  	.presc			= 0xff, /* slow as we can go */
  	.oversampling_shift	= 2,
  };
003ddede6   Lars-Peter Clausen   ARM: S3C2440: Add...
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
  /* Buttons */
  static struct gpio_keys_button gta02_buttons[] = {
  	{
  		.gpio = GTA02_GPIO_AUX_KEY,
  		.code = KEY_PHONE,
  		.desc = "Aux",
  		.type = EV_KEY,
  		.debounce_interval = 100,
  	},
  	{
  		.gpio = GTA02_GPIO_HOLD_KEY,
  		.code = KEY_PAUSE,
  		.desc = "Hold",
  		.type = EV_KEY,
  		.debounce_interval = 100,
  	},
  };
  
  static struct gpio_keys_platform_data gta02_buttons_pdata = {
  	.buttons = gta02_buttons,
  	.nbuttons = ARRAY_SIZE(gta02_buttons),
  };
  
  static struct platform_device gta02_buttons_device = {
  	.name = "gpio-keys",
  	.id = -1,
  	.dev = {
  		.platform_data = &gta02_buttons_pdata,
  	},
  };
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
491
492
493
494
495
496
497
498
499
500
501
502
  
  static void __init gta02_map_io(void)
  {
  	s3c24xx_init_io(gta02_iodesc, ARRAY_SIZE(gta02_iodesc));
  	s3c24xx_init_clocks(12000000);
  	s3c24xx_init_uarts(gta02_uartcfgs, ARRAY_SIZE(gta02_uartcfgs));
  }
  
  
  /* These are the guys that don't need to be children of PMU. */
  
  static struct platform_device *gta02_devices[] __initdata = {
b813248c6   Ben Dooks   ARM: S3C: Rename ...
503
  	&s3c_device_ohci,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
504
505
506
507
508
509
510
  	&s3c_device_wdt,
  	&s3c_device_sdi,
  	&s3c_device_usbgadget,
  	&s3c_device_nand,
  	&gta02_nor_flash,
  	&s3c24xx_pwm_device,
  	&s3c_device_iis,
afbb1edcd   Lars-Peter Clausen   ARM: S3C2440: Reg...
511
  	&samsung_asoc_dma,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
512
  	&s3c_device_i2c0,
6caa15d0b   Lars-Peter Clausen   ARM: s3c2440: gta...
513
  	&gta02_dfbmcs320_device,
003ddede6   Lars-Peter Clausen   ARM: S3C2440: Add...
514
  	&gta02_buttons_device,
d73af1833   Lars-Peter Clausen   ARM: S3C2440: Add...
515
516
  	&s3c_device_adc,
  	&s3c_device_ts,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
517
518
519
520
521
  };
  
  /* These guys DO need to be children of PMU. */
  
  static struct platform_device *gta02_devices_pmu_children[] = {
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
  };
  
  
  /*
   * This is called when pc50633 is probed, quite late in the day since it is an
   * I2C bus device.  Here we can define platform devices with the advantage that
   * we can mark the pcf50633 as the parent.  This makes them get suspended and
   * resumed with their parent the pcf50633 still around.  All devices whose
   * operation depends on something from pcf50633 must have this relationship
   * made explicit like this, or suspend and resume will become an unreliable
   * hellworld.
   */
  
  static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf)
  {
  	int n;
  
  	/* Grab a copy of the now probed PMU pointer. */
  	gta02_pcf = pcf;
  
  	for (n = 0; n < ARRAY_SIZE(gta02_devices_pmu_children); n++)
  		gta02_devices_pmu_children[n]->dev.parent = pcf->dev;
  
  	platform_add_devices(gta02_devices_pmu_children,
  			     ARRAY_SIZE(gta02_devices_pmu_children));
  }
  
  static void gta02_poweroff(void)
  {
  	pcf50633_reg_set_bit_mask(gta02_pcf, PCF50633_REG_OOCSHDWN, 1, 1);
  }
  
  static void __init gta02_machine_init(void)
  {
c7ff0d9c9   TAMUKI Shoichi   panic: keep blink...
556
  	/* Set the panic callback to turn AUX LED on or off. */
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
557
558
559
560
561
562
563
  	panic_blink = gta02_panic_blink;
  
  	s3c_pm_init();
  
  #ifdef CONFIG_CHARGER_PCF50633
  	INIT_DELAYED_WORK(&gta02_charger_work, gta02_charger_worker);
  #endif
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
564
  	s3c24xx_udc_set_platdata(&gta02_udc_cfg);
d73af1833   Lars-Peter Clausen   ARM: S3C2440: Add...
565
  	s3c24xx_ts_set_platdata(&gta02_ts_info);
f12675204   Ben Dooks   ARM: SAMSUNG: Add...
566
  	s3c_ohci_set_platdata(&gta02_usb_info);
2a3a18045   Ben Dooks   ARM: S3C: Add NAN...
567
  	s3c_nand_set_platdata(&gta02_nand_info);
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
568
569
570
571
572
573
  	s3c_i2c0_set_platdata(NULL);
  
  	i2c_register_board_info(0, gta02_i2c_devs, ARRAY_SIZE(gta02_i2c_devs));
  
  	platform_add_devices(gta02_devices, ARRAY_SIZE(gta02_devices));
  	pm_power_off = gta02_poweroff;
3c861b88d   Lars-Peter Clausen   ARM: S3C2440: Cal...
574
575
  
  	regulator_has_full_constraints();
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
576
577
578
579
580
  }
  
  
  MACHINE_START(NEO1973_GTA02, "GTA02")
  	/* Maintainer: Nelson Castillo <arhuaco@freaks-unidos.net> */
69d50710c   Nicolas Pitre   ARM: mach-s3c24*:...
581
  	.atag_offset	= 0x100,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
582
583
584
585
  	.map_io		= gta02_map_io,
  	.init_irq	= s3c24xx_init_irq,
  	.init_machine	= gta02_machine_init,
  	.timer		= &s3c24xx_timer,
b27b07279   Kukjin Kim   ARM: 7265/1: rest...
586
  	.restart	= s3c2440_restart,
9d76295ac   Andy Green   [ARM] GTA02/FreeR...
587
  MACHINE_END