Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-s3c2442/mach-gta02.c |
| 3 | * |
| 4 | * S3C2442 Machine Support for Openmoko GTA02 / FreeRunner. |
| 5 | * |
| 6 | * Copyright (C) 2006-2009 by Openmoko, Inc. |
| 7 | * Authors: Harald Welte <laforge@openmoko.org> |
| 8 | * Andy Green <andy@openmoko.org> |
| 9 | * Werner Almesberger <werner@openmoko.org> |
| 10 | * All rights reserved. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License as |
| 14 | * published by the Free Software Foundation; either version 2 of |
| 15 | * the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 25 | * MA 02111-1307 USA |
| 26 | * |
| 27 | */ |
| 28 | |
| 29 | #include <linux/kernel.h> |
| 30 | #include <linux/types.h> |
| 31 | #include <linux/interrupt.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/delay.h> |
| 34 | #include <linux/timer.h> |
| 35 | #include <linux/init.h> |
| 36 | #include <linux/gpio.h> |
| 37 | #include <linux/workqueue.h> |
| 38 | #include <linux/platform_device.h> |
| 39 | #include <linux/serial_core.h> |
| 40 | #include <linux/spi/spi.h> |
| 41 | |
| 42 | #include <linux/mmc/host.h> |
| 43 | |
| 44 | #include <linux/mtd/mtd.h> |
| 45 | #include <linux/mtd/nand.h> |
| 46 | #include <linux/mtd/nand_ecc.h> |
| 47 | #include <linux/mtd/partitions.h> |
| 48 | #include <linux/mtd/physmap.h> |
| 49 | #include <linux/io.h> |
| 50 | |
| 51 | #include <linux/i2c.h> |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 52 | #include <linux/regulator/machine.h> |
| 53 | |
| 54 | #include <linux/mfd/pcf50633/core.h> |
| 55 | #include <linux/mfd/pcf50633/mbc.h> |
| 56 | #include <linux/mfd/pcf50633/adc.h> |
| 57 | #include <linux/mfd/pcf50633/gpio.h> |
| 58 | #include <linux/mfd/pcf50633/pmic.h> |
Lars-Peter Clausen | 67e67df | 2010-05-12 02:44:34 +0200 | [diff] [blame] | 59 | #include <linux/mfd/pcf50633/backlight.h> |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 60 | |
Lars-Peter Clausen | 003dded | 2011-02-28 15:24:34 +0900 | [diff] [blame] | 61 | #include <linux/input.h> |
| 62 | #include <linux/gpio_keys.h> |
| 63 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 64 | #include <asm/mach/arch.h> |
| 65 | #include <asm/mach/map.h> |
| 66 | #include <asm/mach/irq.h> |
| 67 | |
| 68 | #include <asm/irq.h> |
| 69 | #include <asm/mach-types.h> |
| 70 | |
| 71 | #include <mach/regs-irq.h> |
| 72 | #include <mach/regs-gpio.h> |
| 73 | #include <mach/regs-gpioj.h> |
| 74 | #include <mach/fb.h> |
| 75 | |
| 76 | #include <mach/spi.h> |
| 77 | #include <mach/spi-gpio.h> |
| 78 | #include <plat/usb-control.h> |
| 79 | #include <mach/regs-mem.h> |
| 80 | #include <mach/hardware.h> |
| 81 | |
| 82 | #include <mach/gta02.h> |
| 83 | |
| 84 | #include <plat/regs-serial.h> |
| 85 | #include <plat/nand.h> |
| 86 | #include <plat/devs.h> |
| 87 | #include <plat/cpu.h> |
| 88 | #include <plat/pm.h> |
| 89 | #include <plat/udc.h> |
| 90 | #include <plat/gpio-cfg.h> |
| 91 | #include <plat/iic.h> |
| 92 | |
| 93 | static struct pcf50633 *gta02_pcf; |
| 94 | |
| 95 | /* |
TAMUKI Shoichi | c7ff0d9 | 2010-08-10 18:03:28 -0700 | [diff] [blame] | 96 | * This gets called frequently when we paniced. |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 97 | */ |
| 98 | |
TAMUKI Shoichi | c7ff0d9 | 2010-08-10 18:03:28 -0700 | [diff] [blame] | 99 | static long gta02_panic_blink(int state) |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 100 | { |
| 101 | long delay = 0; |
TAMUKI Shoichi | c7ff0d9 | 2010-08-10 18:03:28 -0700 | [diff] [blame] | 102 | char led; |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 103 | |
TAMUKI Shoichi | c7ff0d9 | 2010-08-10 18:03:28 -0700 | [diff] [blame] | 104 | led = (state) ? 1 : 0; |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 105 | gpio_direction_output(GTA02_GPIO_AUX_LED, led); |
| 106 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 107 | return delay; |
| 108 | } |
| 109 | |
| 110 | |
| 111 | static struct map_desc gta02_iodesc[] __initdata = { |
| 112 | { |
| 113 | .virtual = 0xe0000000, |
| 114 | .pfn = __phys_to_pfn(S3C2410_CS3 + 0x01000000), |
| 115 | .length = SZ_1M, |
| 116 | .type = MT_DEVICE |
| 117 | }, |
| 118 | }; |
| 119 | |
| 120 | #define UCON (S3C2410_UCON_DEFAULT | S3C2443_UCON_RXERR_IRQEN) |
| 121 | #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB) |
| 122 | #define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE) |
| 123 | |
| 124 | static struct s3c2410_uartcfg gta02_uartcfgs[] = { |
| 125 | [0] = { |
| 126 | .hwport = 0, |
| 127 | .flags = 0, |
| 128 | .ucon = UCON, |
| 129 | .ulcon = ULCON, |
| 130 | .ufcon = UFCON, |
| 131 | }, |
| 132 | [1] = { |
| 133 | .hwport = 1, |
| 134 | .flags = 0, |
| 135 | .ucon = UCON, |
| 136 | .ulcon = ULCON, |
| 137 | .ufcon = UFCON, |
| 138 | }, |
| 139 | [2] = { |
| 140 | .hwport = 2, |
| 141 | .flags = 0, |
| 142 | .ucon = UCON, |
| 143 | .ulcon = ULCON, |
| 144 | .ufcon = UFCON, |
| 145 | }, |
| 146 | }; |
| 147 | |
| 148 | #ifdef CONFIG_CHARGER_PCF50633 |
| 149 | /* |
| 150 | * On GTA02 the 1A charger features a 48K resistor to 0V on the ID pin. |
| 151 | * We use this to recognize that we can pull 1A from the USB socket. |
| 152 | * |
| 153 | * These constants are the measured pcf50633 ADC levels with the 1A |
| 154 | * charger / 48K resistor, and with no pulldown resistor. |
| 155 | */ |
| 156 | |
| 157 | #define ADC_NOM_CHG_DETECT_1A 6 |
| 158 | #define ADC_NOM_CHG_DETECT_USB 43 |
| 159 | |
| 160 | static void |
| 161 | gta02_configure_pmu_for_charger(struct pcf50633 *pcf, void *unused, int res) |
| 162 | { |
| 163 | int ma; |
| 164 | |
| 165 | /* Interpret charger type */ |
| 166 | if (res < ((ADC_NOM_CHG_DETECT_USB + ADC_NOM_CHG_DETECT_1A) / 2)) { |
| 167 | |
| 168 | /* |
| 169 | * Sanity - stop GPO driving out now that we have a 1A charger |
| 170 | * GPO controls USB Host power generation on GTA02 |
| 171 | */ |
| 172 | pcf50633_gpio_set(pcf, PCF50633_GPO, 0); |
| 173 | |
| 174 | ma = 1000; |
| 175 | } else |
| 176 | ma = 100; |
| 177 | |
| 178 | pcf50633_mbc_usb_curlim_set(pcf, ma); |
| 179 | } |
| 180 | |
| 181 | static struct delayed_work gta02_charger_work; |
| 182 | static int gta02_usb_vbus_draw; |
| 183 | |
| 184 | static void gta02_charger_worker(struct work_struct *work) |
| 185 | { |
| 186 | if (gta02_usb_vbus_draw) { |
| 187 | pcf50633_mbc_usb_curlim_set(gta02_pcf, gta02_usb_vbus_draw); |
| 188 | return; |
| 189 | } |
| 190 | |
| 191 | #ifdef CONFIG_PCF50633_ADC |
| 192 | pcf50633_adc_async_read(gta02_pcf, |
| 193 | PCF50633_ADCC1_MUX_ADCIN1, |
| 194 | PCF50633_ADCC1_AVERAGE_16, |
| 195 | gta02_configure_pmu_for_charger, |
| 196 | NULL); |
| 197 | #else |
| 198 | /* |
| 199 | * If the PCF50633 ADC is disabled we fallback to a |
| 200 | * 100mA limit for safety. |
| 201 | */ |
| 202 | pcf50633_mbc_usb_curlim_set(pcf, 100); |
| 203 | #endif |
| 204 | } |
| 205 | |
| 206 | #define GTA02_CHARGER_CONFIGURE_TIMEOUT ((3000 * HZ) / 1000) |
| 207 | |
| 208 | static void gta02_pmu_event_callback(struct pcf50633 *pcf, int irq) |
| 209 | { |
| 210 | if (irq == PCF50633_IRQ_USBINS) { |
| 211 | schedule_delayed_work(>a02_charger_work, |
| 212 | GTA02_CHARGER_CONFIGURE_TIMEOUT); |
| 213 | |
| 214 | return; |
| 215 | } |
| 216 | |
| 217 | if (irq == PCF50633_IRQ_USBREM) { |
| 218 | cancel_delayed_work_sync(>a02_charger_work); |
| 219 | gta02_usb_vbus_draw = 0; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | static void gta02_udc_vbus_draw(unsigned int ma) |
| 224 | { |
| 225 | if (!gta02_pcf) |
| 226 | return; |
| 227 | |
| 228 | gta02_usb_vbus_draw = ma; |
| 229 | |
| 230 | schedule_delayed_work(>a02_charger_work, |
| 231 | GTA02_CHARGER_CONFIGURE_TIMEOUT); |
| 232 | } |
| 233 | #else /* !CONFIG_CHARGER_PCF50633 */ |
| 234 | #define gta02_pmu_event_callback NULL |
| 235 | #define gta02_udc_vbus_draw NULL |
| 236 | #endif |
| 237 | |
| 238 | /* |
| 239 | * This is called when pc50633 is probed, unfortunately quite late in the |
| 240 | * day since it is an I2C bus device. Here we can belatedly define some |
| 241 | * platform devices with the advantage that we can mark the pcf50633 as the |
| 242 | * parent. This makes them get suspended and resumed with their parent |
| 243 | * the pcf50633 still around. |
| 244 | */ |
| 245 | |
| 246 | static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf); |
| 247 | |
| 248 | |
| 249 | static char *gta02_batteries[] = { |
| 250 | "battery", |
| 251 | }; |
| 252 | |
Lars-Peter Clausen | 67e67df | 2010-05-12 02:44:34 +0200 | [diff] [blame] | 253 | static struct pcf50633_bl_platform_data gta02_backlight_data = { |
| 254 | .default_brightness = 0x3f, |
| 255 | .default_brightness_limit = 0, |
| 256 | .ramp_time = 5, |
| 257 | }; |
| 258 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 259 | struct pcf50633_platform_data gta02_pcf_pdata = { |
| 260 | .resumers = { |
| 261 | [0] = PCF50633_INT1_USBINS | |
| 262 | PCF50633_INT1_USBREM | |
| 263 | PCF50633_INT1_ALARM, |
| 264 | [1] = PCF50633_INT2_ONKEYF, |
| 265 | [2] = PCF50633_INT3_ONKEY1S, |
| 266 | [3] = PCF50633_INT4_LOWSYS | |
| 267 | PCF50633_INT4_LOWBAT | |
| 268 | PCF50633_INT4_HIGHTMP, |
| 269 | }, |
| 270 | |
| 271 | .batteries = gta02_batteries, |
| 272 | .num_batteries = ARRAY_SIZE(gta02_batteries), |
Lars-Peter Clausen | 2f745dd | 2009-11-05 00:24:56 +0300 | [diff] [blame] | 273 | |
| 274 | .charger_reference_current_ma = 1000, |
| 275 | |
Lars-Peter Clausen | 67e67df | 2010-05-12 02:44:34 +0200 | [diff] [blame] | 276 | .backlight_data = >a02_backlight_data, |
| 277 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 278 | .reg_init_data = { |
| 279 | [PCF50633_REGULATOR_AUTO] = { |
| 280 | .constraints = { |
| 281 | .min_uV = 3300000, |
| 282 | .max_uV = 3300000, |
| 283 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
| 284 | .always_on = 1, |
| 285 | .apply_uV = 1, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 286 | }, |
| 287 | }, |
| 288 | [PCF50633_REGULATOR_DOWN1] = { |
| 289 | .constraints = { |
| 290 | .min_uV = 1300000, |
| 291 | .max_uV = 1600000, |
| 292 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
| 293 | .always_on = 1, |
| 294 | .apply_uV = 1, |
| 295 | }, |
| 296 | }, |
| 297 | [PCF50633_REGULATOR_DOWN2] = { |
| 298 | .constraints = { |
| 299 | .min_uV = 1800000, |
| 300 | .max_uV = 1800000, |
| 301 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
| 302 | .apply_uV = 1, |
| 303 | .always_on = 1, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 304 | }, |
| 305 | }, |
| 306 | [PCF50633_REGULATOR_HCLDO] = { |
| 307 | .constraints = { |
| 308 | .min_uV = 2000000, |
| 309 | .max_uV = 3300000, |
| 310 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
Lars-Peter Clausen | 7cda3440 | 2011-02-28 15:25:08 +0900 | [diff] [blame] | 311 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE | |
| 312 | REGULATOR_CHANGE_STATUS, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 313 | }, |
| 314 | }, |
| 315 | [PCF50633_REGULATOR_LDO1] = { |
| 316 | .constraints = { |
| 317 | .min_uV = 3300000, |
| 318 | .max_uV = 3300000, |
| 319 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
Lars-Peter Clausen | 7cda3440 | 2011-02-28 15:25:08 +0900 | [diff] [blame] | 320 | .valid_ops_mask = REGULATOR_CHANGE_STATUS, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 321 | .apply_uV = 1, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 322 | }, |
| 323 | }, |
| 324 | [PCF50633_REGULATOR_LDO2] = { |
| 325 | .constraints = { |
| 326 | .min_uV = 3300000, |
| 327 | .max_uV = 3300000, |
| 328 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
| 329 | .apply_uV = 1, |
| 330 | }, |
| 331 | }, |
| 332 | [PCF50633_REGULATOR_LDO3] = { |
| 333 | .constraints = { |
| 334 | .min_uV = 3000000, |
| 335 | .max_uV = 3000000, |
| 336 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
| 337 | .apply_uV = 1, |
| 338 | }, |
| 339 | }, |
| 340 | [PCF50633_REGULATOR_LDO4] = { |
| 341 | .constraints = { |
| 342 | .min_uV = 3200000, |
| 343 | .max_uV = 3200000, |
| 344 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
Lars-Peter Clausen | 7cda3440 | 2011-02-28 15:25:08 +0900 | [diff] [blame] | 345 | .valid_ops_mask = REGULATOR_CHANGE_STATUS, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 346 | .apply_uV = 1, |
| 347 | }, |
| 348 | }, |
| 349 | [PCF50633_REGULATOR_LDO5] = { |
| 350 | .constraints = { |
| 351 | .min_uV = 3000000, |
| 352 | .max_uV = 3000000, |
| 353 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
Lars-Peter Clausen | 7cda3440 | 2011-02-28 15:25:08 +0900 | [diff] [blame] | 354 | .valid_ops_mask = REGULATOR_CHANGE_STATUS, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 355 | .apply_uV = 1, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 356 | }, |
| 357 | }, |
| 358 | [PCF50633_REGULATOR_LDO6] = { |
| 359 | .constraints = { |
| 360 | .min_uV = 3000000, |
| 361 | .max_uV = 3000000, |
| 362 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
| 363 | }, |
| 364 | }, |
| 365 | [PCF50633_REGULATOR_MEMLDO] = { |
| 366 | .constraints = { |
| 367 | .min_uV = 1800000, |
| 368 | .max_uV = 1800000, |
| 369 | .valid_modes_mask = REGULATOR_MODE_NORMAL, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 370 | }, |
| 371 | }, |
| 372 | |
| 373 | }, |
| 374 | .probe_done = gta02_pmu_attach_child_devices, |
| 375 | .mbc_event_callback = gta02_pmu_event_callback, |
| 376 | }; |
| 377 | |
| 378 | |
| 379 | /* NOR Flash. */ |
| 380 | |
| 381 | #define GTA02_FLASH_BASE 0x18000000 /* GCS3 */ |
| 382 | #define GTA02_FLASH_SIZE 0x200000 /* 2MBytes */ |
| 383 | |
| 384 | static struct physmap_flash_data gta02_nor_flash_data = { |
| 385 | .width = 2, |
| 386 | }; |
| 387 | |
| 388 | static struct resource gta02_nor_flash_resource = { |
| 389 | .start = GTA02_FLASH_BASE, |
| 390 | .end = GTA02_FLASH_BASE + GTA02_FLASH_SIZE - 1, |
| 391 | .flags = IORESOURCE_MEM, |
| 392 | }; |
| 393 | |
| 394 | static struct platform_device gta02_nor_flash = { |
| 395 | .name = "physmap-flash", |
| 396 | .id = 0, |
| 397 | .dev = { |
| 398 | .platform_data = >a02_nor_flash_data, |
| 399 | }, |
| 400 | .resource = >a02_nor_flash_resource, |
| 401 | .num_resources = 1, |
| 402 | }; |
| 403 | |
| 404 | |
| 405 | struct platform_device s3c24xx_pwm_device = { |
| 406 | .name = "s3c24xx_pwm", |
| 407 | .num_resources = 0, |
| 408 | }; |
| 409 | |
| 410 | static struct i2c_board_info gta02_i2c_devs[] __initdata = { |
| 411 | { |
| 412 | I2C_BOARD_INFO("pcf50633", 0x73), |
| 413 | .irq = GTA02_IRQ_PCF50633, |
| 414 | .platform_data = >a02_pcf_pdata, |
| 415 | }, |
| 416 | { |
| 417 | I2C_BOARD_INFO("wm8753", 0x1a), |
| 418 | }, |
| 419 | }; |
| 420 | |
Ben Dooks | 2a3a180 | 2009-09-28 13:59:49 +0300 | [diff] [blame] | 421 | static struct s3c2410_nand_set __initdata gta02_nand_sets[] = { |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 422 | [0] = { |
| 423 | /* |
| 424 | * This name is also hard-coded in the boot loaders, so |
| 425 | * changing it would would require all users to upgrade |
| 426 | * their boot loaders, some of which are stored in a NOR |
| 427 | * that is considered to be immutable. |
| 428 | */ |
| 429 | .name = "neo1973-nand", |
| 430 | .nr_chips = 1, |
Nelson Castillo | 76609a6 | 2009-06-23 13:54:32 -0500 | [diff] [blame] | 431 | .flash_bbt = 1, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 432 | }, |
| 433 | }; |
| 434 | |
| 435 | /* |
| 436 | * Choose a set of timings derived from S3C@2442B MCP54 |
| 437 | * data sheet (K5D2G13ACM-D075 MCP Memory). |
| 438 | */ |
| 439 | |
Ben Dooks | 2a3a180 | 2009-09-28 13:59:49 +0300 | [diff] [blame] | 440 | static struct s3c2410_platform_nand __initdata gta02_nand_info = { |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 441 | .tacls = 0, |
| 442 | .twrph0 = 25, |
| 443 | .twrph1 = 15, |
| 444 | .nr_sets = ARRAY_SIZE(gta02_nand_sets), |
| 445 | .sets = gta02_nand_sets, |
| 446 | }; |
| 447 | |
| 448 | |
| 449 | static void gta02_udc_command(enum s3c2410_udc_cmd_e cmd) |
| 450 | { |
| 451 | switch (cmd) { |
| 452 | case S3C2410_UDC_P_ENABLE: |
| 453 | pr_debug("%s S3C2410_UDC_P_ENABLE\n", __func__); |
| 454 | gpio_direction_output(GTA02_GPIO_USB_PULLUP, 1); |
| 455 | break; |
| 456 | case S3C2410_UDC_P_DISABLE: |
| 457 | pr_debug("%s S3C2410_UDC_P_DISABLE\n", __func__); |
| 458 | gpio_direction_output(GTA02_GPIO_USB_PULLUP, 0); |
| 459 | break; |
| 460 | case S3C2410_UDC_P_RESET: |
| 461 | pr_debug("%s S3C2410_UDC_P_RESET\n", __func__); |
| 462 | /* FIXME: Do something here. */ |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | /* Get PMU to set USB current limit accordingly. */ |
| 467 | static struct s3c2410_udc_mach_info gta02_udc_cfg = { |
| 468 | .vbus_draw = gta02_udc_vbus_draw, |
| 469 | .udc_command = gta02_udc_command, |
| 470 | |
| 471 | }; |
| 472 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 473 | /* USB */ |
Ben Dooks | f126752 | 2010-01-13 14:59:46 +0900 | [diff] [blame] | 474 | static struct s3c2410_hcd_info gta02_usb_info __initdata = { |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 475 | .port[0] = { |
| 476 | .flags = S3C_HCDFLG_USED, |
| 477 | }, |
| 478 | .port[1] = { |
| 479 | .flags = 0, |
| 480 | }, |
| 481 | }; |
| 482 | |
Lars-Peter Clausen | 003dded | 2011-02-28 15:24:34 +0900 | [diff] [blame] | 483 | /* Buttons */ |
| 484 | static struct gpio_keys_button gta02_buttons[] = { |
| 485 | { |
| 486 | .gpio = GTA02_GPIO_AUX_KEY, |
| 487 | .code = KEY_PHONE, |
| 488 | .desc = "Aux", |
| 489 | .type = EV_KEY, |
| 490 | .debounce_interval = 100, |
| 491 | }, |
| 492 | { |
| 493 | .gpio = GTA02_GPIO_HOLD_KEY, |
| 494 | .code = KEY_PAUSE, |
| 495 | .desc = "Hold", |
| 496 | .type = EV_KEY, |
| 497 | .debounce_interval = 100, |
| 498 | }, |
| 499 | }; |
| 500 | |
| 501 | static struct gpio_keys_platform_data gta02_buttons_pdata = { |
| 502 | .buttons = gta02_buttons, |
| 503 | .nbuttons = ARRAY_SIZE(gta02_buttons), |
| 504 | }; |
| 505 | |
| 506 | static struct platform_device gta02_buttons_device = { |
| 507 | .name = "gpio-keys", |
| 508 | .id = -1, |
| 509 | .dev = { |
| 510 | .platform_data = >a02_buttons_pdata, |
| 511 | }, |
| 512 | }; |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 513 | |
| 514 | static void __init gta02_map_io(void) |
| 515 | { |
| 516 | s3c24xx_init_io(gta02_iodesc, ARRAY_SIZE(gta02_iodesc)); |
| 517 | s3c24xx_init_clocks(12000000); |
| 518 | s3c24xx_init_uarts(gta02_uartcfgs, ARRAY_SIZE(gta02_uartcfgs)); |
| 519 | } |
| 520 | |
| 521 | |
| 522 | /* These are the guys that don't need to be children of PMU. */ |
| 523 | |
| 524 | static struct platform_device *gta02_devices[] __initdata = { |
Ben Dooks | b813248 | 2009-11-23 00:13:39 +0000 | [diff] [blame] | 525 | &s3c_device_ohci, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 526 | &s3c_device_wdt, |
| 527 | &s3c_device_sdi, |
| 528 | &s3c_device_usbgadget, |
| 529 | &s3c_device_nand, |
| 530 | >a02_nor_flash, |
| 531 | &s3c24xx_pwm_device, |
| 532 | &s3c_device_iis, |
Lars-Peter Clausen | afbb1ed | 2011-02-28 15:24:07 +0900 | [diff] [blame] | 533 | &samsung_asoc_dma, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 534 | &s3c_device_i2c0, |
Lars-Peter Clausen | 003dded | 2011-02-28 15:24:34 +0900 | [diff] [blame] | 535 | >a02_buttons_device, |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 536 | }; |
| 537 | |
| 538 | /* These guys DO need to be children of PMU. */ |
| 539 | |
| 540 | static struct platform_device *gta02_devices_pmu_children[] = { |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 541 | }; |
| 542 | |
| 543 | |
| 544 | /* |
| 545 | * This is called when pc50633 is probed, quite late in the day since it is an |
| 546 | * I2C bus device. Here we can define platform devices with the advantage that |
| 547 | * we can mark the pcf50633 as the parent. This makes them get suspended and |
| 548 | * resumed with their parent the pcf50633 still around. All devices whose |
| 549 | * operation depends on something from pcf50633 must have this relationship |
| 550 | * made explicit like this, or suspend and resume will become an unreliable |
| 551 | * hellworld. |
| 552 | */ |
| 553 | |
| 554 | static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf) |
| 555 | { |
| 556 | int n; |
| 557 | |
| 558 | /* Grab a copy of the now probed PMU pointer. */ |
| 559 | gta02_pcf = pcf; |
| 560 | |
| 561 | for (n = 0; n < ARRAY_SIZE(gta02_devices_pmu_children); n++) |
| 562 | gta02_devices_pmu_children[n]->dev.parent = pcf->dev; |
| 563 | |
| 564 | platform_add_devices(gta02_devices_pmu_children, |
| 565 | ARRAY_SIZE(gta02_devices_pmu_children)); |
| 566 | } |
| 567 | |
| 568 | static void gta02_poweroff(void) |
| 569 | { |
| 570 | pcf50633_reg_set_bit_mask(gta02_pcf, PCF50633_REG_OOCSHDWN, 1, 1); |
| 571 | } |
| 572 | |
| 573 | static void __init gta02_machine_init(void) |
| 574 | { |
TAMUKI Shoichi | c7ff0d9 | 2010-08-10 18:03:28 -0700 | [diff] [blame] | 575 | /* Set the panic callback to turn AUX LED on or off. */ |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 576 | panic_blink = gta02_panic_blink; |
| 577 | |
| 578 | s3c_pm_init(); |
| 579 | |
| 580 | #ifdef CONFIG_CHARGER_PCF50633 |
| 581 | INIT_DELAYED_WORK(>a02_charger_work, gta02_charger_worker); |
| 582 | #endif |
| 583 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 584 | s3c24xx_udc_set_platdata(>a02_udc_cfg); |
Ben Dooks | f126752 | 2010-01-13 14:59:46 +0900 | [diff] [blame] | 585 | s3c_ohci_set_platdata(>a02_usb_info); |
Ben Dooks | 2a3a180 | 2009-09-28 13:59:49 +0300 | [diff] [blame] | 586 | s3c_nand_set_platdata(>a02_nand_info); |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 587 | s3c_i2c0_set_platdata(NULL); |
| 588 | |
| 589 | i2c_register_board_info(0, gta02_i2c_devs, ARRAY_SIZE(gta02_i2c_devs)); |
| 590 | |
| 591 | platform_add_devices(gta02_devices, ARRAY_SIZE(gta02_devices)); |
| 592 | pm_power_off = gta02_poweroff; |
Lars-Peter Clausen | 3c861b8 | 2011-02-28 15:25:43 +0900 | [diff] [blame] | 593 | |
| 594 | regulator_has_full_constraints(); |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | |
| 598 | MACHINE_START(NEO1973_GTA02, "GTA02") |
| 599 | /* Maintainer: Nelson Castillo <arhuaco@freaks-unidos.net> */ |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 600 | .boot_params = S3C2410_SDRAM_PA + 0x100, |
| 601 | .map_io = gta02_map_io, |
| 602 | .init_irq = s3c24xx_init_irq, |
| 603 | .init_machine = gta02_machine_init, |
| 604 | .timer = &s3c24xx_timer, |
| 605 | MACHINE_END |