2 * Copyright (C) 2007-2009 ST-Ericsson AB
3 * License terms: GNU General Public License (GPL) version 2
4 * AB3100 core access functions
5 * Author: Linus Walleij <linus.walleij@stericsson.com>
7 * ABX500 core access functions.
8 * The abx500 interface is used for the Analog Baseband chip
9 * ab3100, ab5500, and ab8500.
11 * Author: Mattias Wallin <mattias.wallin@stericsson.com>
12 * Author: Mattias Nilsson <mattias.i.nilsson@stericsson.com>
13 * Author: Bengt Jonsson <bengt.g.jonsson@stericsson.com>
14 * Author: Rickard Andersson <rickard.andersson@stericsson.com>
17 #include <linux/device.h>
18 #include <linux/regulator/machine.h>
23 #define AB3100_P1A 0xc0
24 #define AB3100_P1B 0xc1
25 #define AB3100_P1C 0xc2
26 #define AB3100_P1D 0xc3
27 #define AB3100_P1E 0xc4
28 #define AB3100_P1F 0xc5
29 #define AB3100_P1G 0xc6
30 #define AB3100_R2A 0xc7
31 #define AB3100_R2B 0xc8
32 #define AB5500_1_0 0x20
33 #define AB5500_1_1 0x21
34 #define AB5500_2_0 0x24
37 #define AB8500_CUT1P0 0x10
38 #define AB8500_CUT1P1 0x11
39 #define AB8500_CUT2P0 0x20
40 #define AB8500_CUT3P0 0x30
41 #define AB8500_CUT3P3 0x33
44 * AB3100, EVENTA1, A2 and A3 event register flags
45 * these are catenated into a single 32-bit flag in the code
46 * for event notification broadcasts.
48 #define AB3100_EVENTA1_ONSWA (0x01<<16)
49 #define AB3100_EVENTA1_ONSWB (0x02<<16)
50 #define AB3100_EVENTA1_ONSWC (0x04<<16)
51 #define AB3100_EVENTA1_DCIO (0x08<<16)
52 #define AB3100_EVENTA1_OVER_TEMP (0x10<<16)
53 #define AB3100_EVENTA1_SIM_OFF (0x20<<16)
54 #define AB3100_EVENTA1_VBUS (0x40<<16)
55 #define AB3100_EVENTA1_VSET_USB (0x80<<16)
57 #define AB3100_EVENTA2_READY_TX (0x01<<8)
58 #define AB3100_EVENTA2_READY_RX (0x02<<8)
59 #define AB3100_EVENTA2_OVERRUN_ERROR (0x04<<8)
60 #define AB3100_EVENTA2_FRAMING_ERROR (0x08<<8)
61 #define AB3100_EVENTA2_CHARG_OVERCURRENT (0x10<<8)
62 #define AB3100_EVENTA2_MIDR (0x20<<8)
63 #define AB3100_EVENTA2_BATTERY_REM (0x40<<8)
64 #define AB3100_EVENTA2_ALARM (0x80<<8)
66 #define AB3100_EVENTA3_ADC_TRIG5 (0x01)
67 #define AB3100_EVENTA3_ADC_TRIG4 (0x02)
68 #define AB3100_EVENTA3_ADC_TRIG3 (0x04)
69 #define AB3100_EVENTA3_ADC_TRIG2 (0x08)
70 #define AB3100_EVENTA3_ADC_TRIGVBAT (0x10)
71 #define AB3100_EVENTA3_ADC_TRIGVTX (0x20)
72 #define AB3100_EVENTA3_ADC_TRIG1 (0x40)
73 #define AB3100_EVENTA3_ADC_TRIG0 (0x80)
75 /* AB3100, STR register flags */
76 #define AB3100_STR_ONSWA (0x01)
77 #define AB3100_STR_ONSWB (0x02)
78 #define AB3100_STR_ONSWC (0x04)
79 #define AB3100_STR_DCIO (0x08)
80 #define AB3100_STR_BOOT_MODE (0x10)
81 #define AB3100_STR_SIM_OFF (0x20)
82 #define AB3100_STR_BATT_REMOVAL (0x40)
83 #define AB3100_STR_VBUS (0x80)
86 * AB3100 contains 8 regulators, one external regulator controller
87 * and a buck converter, further the LDO E and buck converter can
88 * have separate settings if they are in sleep mode, this is
89 * modeled as a separate regulator.
91 #define AB3100_NUM_REGULATORS 10
95 * @access_mutex: lock out concurrent accesses to the AB3100 registers
96 * @dev: pointer to the containing device
97 * @i2c_client: I2C client for this chip
98 * @testreg_client: secondary client for test registers
99 * @chip_name: name of this chip variant
100 * @chip_id: 8 bit chip ID for this chip variant
101 * @event_subscribers: event subscribers are listed here
102 * @startup_events: a copy of the first reading of the event registers
103 * @startup_events_read: whether the first events have been read
105 * This struct is PRIVATE and devices using it should NOT
106 * access ANY fields. It is used as a token for calling the
110 struct mutex access_mutex
;
112 struct i2c_client
*i2c_client
;
113 struct i2c_client
*testreg_client
;
116 struct blocking_notifier_head event_subscribers
;
117 u8 startup_events
[3];
118 bool startup_events_read
;
122 * struct ab3100_platform_data
123 * Data supplied to initialize board connections to the AB3100
124 * @reg_constraints: regulator constraints for target board
125 * the order of these constraints are: LDO A, C, D, E,
126 * F, G, H, K, EXT and BUCK.
127 * @reg_initvals: initial values for the regulator registers
128 * plus two sleep settings for LDO E and the BUCK converter.
129 * exactly AB3100_NUM_REGULATORS+2 values must be sent in.
130 * Order: LDO A, C, E, E sleep, F, G, H, K, EXT, BUCK,
131 * BUCK sleep, LDO D. (LDO D need to be initialized last.)
132 * @external_voltage: voltage level of the external regulator.
134 struct ab3100_platform_data
{
135 struct regulator_init_data reg_constraints
[AB3100_NUM_REGULATORS
];
136 u8 reg_initvals
[AB3100_NUM_REGULATORS
+2];
137 int external_voltage
;
140 int ab3100_event_register(struct ab3100
*ab3100
,
141 struct notifier_block
*nb
);
142 int ab3100_event_unregister(struct ab3100
*ab3100
,
143 struct notifier_block
*nb
);
146 * struct abx500_init_setting
147 * Initial value of the registers for driver to use during setup.
149 struct abx500_init_settings
{
155 int abx500_set_register_interruptible(struct device
*dev
, u8 bank
, u8 reg
,
157 int abx500_get_register_interruptible(struct device
*dev
, u8 bank
, u8 reg
,
159 int abx500_get_register_page_interruptible(struct device
*dev
, u8 bank
,
160 u8 first_reg
, u8
*regvals
, u8 numregs
);
161 int abx500_set_register_page_interruptible(struct device
*dev
, u8 bank
,
162 u8 first_reg
, u8
*regvals
, u8 numregs
);
164 * abx500_mask_and_set_register_inerruptible() - Modifies selected bits of a
167 * @dev: The AB sub device.
168 * @bank: The i2c bank number.
169 * @bitmask: The bit mask to use.
170 * @bitvalues: The new bit values.
172 * Updates the value of an AB register:
173 * value -> ((value & ~bitmask) | (bitvalues & bitmask))
175 int abx500_mask_and_set_register_interruptible(struct device
*dev
, u8 bank
,
176 u8 reg
, u8 bitmask
, u8 bitvalues
);
177 int abx500_get_chip_id(struct device
*dev
);
178 int abx500_event_registers_startup_state_get(struct device
*dev
, u8
*event
);
179 int abx500_startup_irq_enabled(struct device
*dev
, unsigned int irq
);
182 int (*get_chip_id
) (struct device
*);
183 int (*get_register
) (struct device
*, u8
, u8
, u8
*);
184 int (*set_register
) (struct device
*, u8
, u8
, u8
);
185 int (*get_register_page
) (struct device
*, u8
, u8
, u8
*, u8
);
186 int (*set_register_page
) (struct device
*, u8
, u8
, u8
*, u8
);
187 int (*mask_and_set_register
) (struct device
*, u8
, u8
, u8
, u8
);
188 int (*event_registers_startup_state_get
) (struct device
*, u8
*);
189 int (*startup_irq_enabled
) (struct device
*, unsigned int);
192 int abx500_register_ops(struct device
*core_dev
, struct abx500_ops
*ops
);
193 void abx500_remove_ops(struct device
*dev
);