2 * arch/arm/mach-u300/i2c.c
4 * Copyright (C) 2009 ST-Ericsson AB
5 * License terms: GNU General Public License (GPL) version 2
7 * Register board i2c devices
8 * Author: Linus Walleij <linus.walleij@stericsson.com>
10 #include <linux/kernel.h>
11 #include <linux/i2c.h>
12 #include <linux/mfd/abx500.h>
13 #include <linux/regulator/machine.h>
14 #include <linux/amba/bus.h>
15 #include <mach/irqs.h>
18 * Initial settings of ab3100 registers.
19 * Common for below LDO regulator settings are that
20 * bit 7-5 controls voltage. Bit 4 turns regulator ON(1) or OFF(0).
21 * Bit 3-2 controls sleep enable and bit 1-0 controls sleep mode.
24 /* LDO_A 0x16: 2.75V, ON, SLEEP_A, SLEEP OFF GND */
25 #define LDO_A_SETTING 0x16
26 /* LDO_C 0x10: 2.65V, ON, SLEEP_A or B, SLEEP full power */
27 #define LDO_C_SETTING 0x10
28 /* LDO_D 0x10: 2.65V, ON, sleep mode not used */
29 #define LDO_D_SETTING 0x10
30 /* LDO_E 0x10: 1.8V, ON, SLEEP_A or B, SLEEP full power */
31 #define LDO_E_SETTING 0x10
32 /* LDO_E SLEEP 0x00: 1.8V, not used, SLEEP_A or B, not used */
33 #define LDO_E_SLEEP_SETTING 0x00
34 /* LDO_F 0xD0: 2.5V, ON, SLEEP_A or B, SLEEP full power */
35 #define LDO_F_SETTING 0xD0
36 /* LDO_G 0x00: 2.85V, OFF, SLEEP_A or B, SLEEP full power */
37 #define LDO_G_SETTING 0x00
38 /* LDO_H 0x18: 2.75V, ON, SLEEP_B, SLEEP full power */
39 #define LDO_H_SETTING 0x18
40 /* LDO_K 0x00: 2.75V, OFF, SLEEP_A or B, SLEEP full power */
41 #define LDO_K_SETTING 0x00
42 /* LDO_EXT 0x00: Voltage not set, OFF, not used, not used */
43 #define LDO_EXT_SETTING 0x00
44 /* BUCK 0x7D: 1.2V, ON, SLEEP_A and B, SLEEP low power */
45 #define BUCK_SETTING 0x7D
46 /* BUCK SLEEP 0xAC: 1.05V, Not used, SLEEP_A and B, Not used */
47 #define BUCK_SLEEP_SETTING 0xAC
49 #ifdef CONFIG_AB3100_CORE
50 static struct regulator_consumer_supply supply_ldo_c
[] = {
52 .dev_name
= "ab3100-codec",
53 .supply
= "vaudio", /* Powers the codec */
58 * This one needs to be a supply so we can turn it off
59 * in order to shut down the system.
61 static struct regulator_consumer_supply supply_ldo_d
[] = {
64 .supply
= "vana15", /* Powers the SoC (CPU etc) */
68 static struct regulator_consumer_supply supply_ldo_g
[] = {
71 .supply
= "vmmc", /* Powers MMC/SD card */
75 static struct regulator_consumer_supply supply_ldo_h
[] = {
77 .dev_name
= "xgam_pdi",
78 .supply
= "vdisp", /* Powers camera, display etc */
82 static struct regulator_consumer_supply supply_ldo_k
[] = {
85 .supply
= "vir", /* Power IrDA */
90 * This is a placeholder for whoever wish to use the
93 static struct regulator_consumer_supply supply_ldo_ext
[] = {
96 .supply
= "vext", /* External power */
100 /* Preset (hardware defined) voltages for these regulators */
101 #define LDO_A_VOLTAGE 2750000
102 #define LDO_C_VOLTAGE 2650000
103 #define LDO_D_VOLTAGE 2650000
105 static struct ab3100_platform_data ab3100_plf_data
= {
107 /* LDO A routing and constraints */
111 .min_uV
= LDO_A_VOLTAGE
,
112 .max_uV
= LDO_A_VOLTAGE
,
113 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
118 /* LDO C routing and constraints */
121 .min_uV
= LDO_C_VOLTAGE
,
122 .max_uV
= LDO_C_VOLTAGE
,
123 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
125 .num_consumer_supplies
= ARRAY_SIZE(supply_ldo_c
),
126 .consumer_supplies
= supply_ldo_c
,
128 /* LDO D routing and constraints */
131 .min_uV
= LDO_D_VOLTAGE
,
132 .max_uV
= LDO_D_VOLTAGE
,
133 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
134 .valid_ops_mask
= REGULATOR_CHANGE_STATUS
,
136 * Actually this is boot_on but we need
137 * to reference count it externally to
138 * be able to shut down the system.
141 .num_consumer_supplies
= ARRAY_SIZE(supply_ldo_d
),
142 .consumer_supplies
= supply_ldo_d
,
144 /* LDO E routing and constraints */
150 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
152 REGULATOR_CHANGE_VOLTAGE
|
153 REGULATOR_CHANGE_STATUS
,
158 /* LDO F routing and constraints */
164 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
166 REGULATOR_CHANGE_VOLTAGE
|
167 REGULATOR_CHANGE_STATUS
,
172 /* LDO G routing and constraints */
177 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
179 REGULATOR_CHANGE_VOLTAGE
|
180 REGULATOR_CHANGE_STATUS
,
182 .num_consumer_supplies
= ARRAY_SIZE(supply_ldo_g
),
183 .consumer_supplies
= supply_ldo_g
,
185 /* LDO H routing and constraints */
190 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
192 REGULATOR_CHANGE_VOLTAGE
|
193 REGULATOR_CHANGE_STATUS
,
195 .num_consumer_supplies
= ARRAY_SIZE(supply_ldo_h
),
196 .consumer_supplies
= supply_ldo_h
,
198 /* LDO K routing and constraints */
203 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
205 REGULATOR_CHANGE_VOLTAGE
|
206 REGULATOR_CHANGE_STATUS
,
208 .num_consumer_supplies
= ARRAY_SIZE(supply_ldo_k
),
209 .consumer_supplies
= supply_ldo_k
,
211 /* External regulator interface. No fixed voltage specified.
212 * If we knew the voltage of the external regulator and it
213 * was connected on the board, we could add the (fixed)
214 * voltage for it here.
220 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
222 REGULATOR_CHANGE_STATUS
,
224 .num_consumer_supplies
= ARRAY_SIZE(supply_ldo_ext
),
225 .consumer_supplies
= supply_ldo_ext
,
227 /* Buck converter routing and constraints */
233 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
235 REGULATOR_CHANGE_VOLTAGE
|
236 REGULATOR_CHANGE_STATUS
,
259 #ifdef CONFIG_AB3550_CORE
260 static struct abx500_init_settings ab3550_init_settings
[] = {
284 /* The two most significant bits are not used */
289 static struct ab3550_platform_data ab3550_plf_data
= {
291 .base
= IRQ_AB3550_BASE
,
292 .count
= (IRQ_AB3550_END
- IRQ_AB3550_BASE
+ 1),
296 .init_settings
= ab3550_init_settings
,
297 .init_settings_sz
= ARRAY_SIZE(ab3550_init_settings
),
301 static struct i2c_board_info __initdata bus0_i2c_board_info
[] = {
302 #if defined(CONFIG_AB3550_CORE)
306 .irq
= IRQ_U300_IRQ0_EXT
,
307 .platform_data
= &ab3550_plf_data
,
309 #elif defined(CONFIG_AB3100_CORE)
313 .irq
= IRQ_U300_IRQ0_EXT
,
314 .platform_data
= &ab3100_plf_data
,
321 static struct i2c_board_info __initdata bus1_i2c_board_info
[] = {
322 #ifdef CONFIG_MACH_U300_BS335
336 void __init
u300_i2c_register_board_devices(void)
338 i2c_register_board_info(0, bus0_i2c_board_info
,
339 ARRAY_SIZE(bus0_i2c_board_info
));
341 * This makes the core shut down all unused regulators
342 * after all the initcalls have completed.
344 regulator_has_full_constraints();
345 i2c_register_board_info(1, bus1_i2c_board_info
,
346 ARRAY_SIZE(bus1_i2c_board_info
));