Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
jasper.c
Go to the documentation of this file.
1 /*
2  * linux/arch/arm/mach-mmp/jasper.c
3  *
4  * Support for the Marvell Jasper Development Platform.
5  *
6  * Copyright (C) 2009-2010 Marvell International Ltd.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * publishhed by the Free Software Foundation.
11  */
12 
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
16 #include <linux/io.h>
19 #include <linux/mfd/max8925.h>
20 #include <linux/interrupt.h>
21 
22 #include <mach/irqs.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <mach/addr-map.h>
26 #include <mach/mfp-mmp2.h>
27 #include <mach/mmp2.h>
28 
29 #include "common.h"
30 
31 #define JASPER_NR_IRQS (MMP_NR_IRQS + 48)
32 
33 static unsigned long jasper_pin_config[] __initdata = {
34  /* UART1 */
37 
38  /* UART3 */
41 
42  /* DFI */
67 
68  /* PMIC */
70 
71  /* MMC1 */
80 
81  /* MMC2 */
88 
89  /* MMC3 */
100 };
101 
102 static struct regulator_consumer_supply max8649_supply[] = {
103  REGULATOR_SUPPLY("vcc_core", NULL),
104 };
105 
106 static struct regulator_init_data max8649_init_data = {
107  .constraints = {
108  .name = "vcc_core range",
109  .min_uV = 1150000,
110  .max_uV = 1280000,
111  .always_on = 1,
112  .boot_on = 1,
113  .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
114  },
115  .num_consumer_supplies = 1,
116  .consumer_supplies = &max8649_supply[0],
117 };
118 
119 static struct max8649_platform_data jasper_max8649_info = {
120  .mode = 2, /* VID1 = 1, VID0 = 0 */
121  .extclk = 0,
122  .ramp_timing = MAX8649_RAMP_32MV,
123  .regulator = &max8649_init_data,
124 };
125 
126 static struct max8925_backlight_pdata jasper_backlight_data = {
127  .dual_string = 0,
128 };
129 
130 static struct max8925_power_pdata jasper_power_data = {
131  .batt_detect = 0, /* can't detect battery by ID pin */
132  .topoff_threshold = MAX8925_TOPOFF_THR_10PER,
133  .fast_charge = MAX8925_FCHG_1000MA,
134 };
135 
136 static struct max8925_platform_data jasper_max8925_info = {
137  .backlight = &jasper_backlight_data,
138  .power = &jasper_power_data,
139  .irq_base = MMP_NR_IRQS,
140 };
141 
142 static struct i2c_board_info jasper_twsi1_info[] = {
143  [0] = {
144  .type = "max8649",
145  .addr = 0x60,
146  .platform_data = &jasper_max8649_info,
147  },
148  [1] = {
149  .type = "max8925",
150  .addr = 0x3c,
151  .irq = IRQ_MMP2_PMIC,
152  .platform_data = &jasper_max8925_info,
153  },
154 };
155 
156 static struct sdhci_pxa_platdata mmp2_sdh_platdata_mmc0 = {
157  .clk_delay_cycles = 0x1f,
158 };
159 
160 static void __init jasper_init(void)
161 {
162  mfp_config(ARRAY_AND_SIZE(jasper_pin_config));
163 
164  /* on-chip devices */
165  mmp2_add_uart(1);
166  mmp2_add_uart(3);
167  mmp2_add_twsi(1, NULL, ARRAY_AND_SIZE(jasper_twsi1_info));
168  mmp2_add_sdhost(0, &mmp2_sdh_platdata_mmc0); /* SD/MMC */
169 
171 }
172 
173 MACHINE_START(MARVELL_JASPER, "Jasper Development Platform")
174  .map_io = mmp_map_io,
175  .nr_irqs = JASPER_NR_IRQS,
176  .init_irq = mmp2_init_irq,
177  .timer = &mmp2_timer,
178  .init_machine = jasper_init,
179  .restart = mmp_restart,