aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2008-12-18 17:09:50 -0500
committerSamuel Ortiz <samuel@sortiz.org>2009-01-04 06:17:42 -0500
commit96920630624868add3f63f596523e70dbb64549a (patch)
tree061f9889a1f0a0b6937ba0df82d8114a9123b935 /drivers
parent94964f96a6b7018d68b7386cd8c0b8505d3cf69f (diff)
mfd: Add WM8352 support
The WM8352 is a variant of the WM8350. Aside from the register defaults there are no software visible differences to the WM8350. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mfd/Kconfig16
-rw-r--r--drivers/mfd/wm8350-core.c86
-rw-r--r--drivers/mfd/wm8350-i2c.c1
-rw-r--r--drivers/mfd/wm8350-regmap.c1052
4 files changed, 1139 insertions, 16 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index ddfb12b52f54..76a482dfc177 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -143,6 +143,22 @@ config MFD_WM8350_CONFIG_MODE_3
143 bool 143 bool
144 depends on MFD_WM8350 144 depends on MFD_WM8350
145 145
146config MFD_WM8352_CONFIG_MODE_0
147 bool
148 depends on MFD_WM8350
149
150config MFD_WM8352_CONFIG_MODE_1
151 bool
152 depends on MFD_WM8350
153
154config MFD_WM8352_CONFIG_MODE_2
155 bool
156 depends on MFD_WM8350
157
158config MFD_WM8352_CONFIG_MODE_3
159 bool
160 depends on MFD_WM8350
161
146config MFD_WM8350_I2C 162config MFD_WM8350_I2C
147 tristate "Support Wolfson Microelectronics WM8350 with I2C" 163 tristate "Support Wolfson Microelectronics WM8350 with I2C"
148 select MFD_WM8350 164 select MFD_WM8350
diff --git a/drivers/mfd/wm8350-core.c b/drivers/mfd/wm8350-core.c
index 2188d759cbde..fa505ac76c84 100644
--- a/drivers/mfd/wm8350-core.c
+++ b/drivers/mfd/wm8350-core.c
@@ -1133,35 +1133,75 @@ EXPORT_SYMBOL_GPL(wm8350_read_auxadc);
1133/* 1133/*
1134 * Cache is always host endian. 1134 * Cache is always host endian.
1135 */ 1135 */
1136static int wm8350_create_cache(struct wm8350 *wm8350, int mode) 1136static int wm8350_create_cache(struct wm8350 *wm8350, int type, int mode)
1137{ 1137{
1138 int i, ret = 0; 1138 int i, ret = 0;
1139 u16 value; 1139 u16 value;
1140 const u16 *reg_map; 1140 const u16 *reg_map;
1141 1141
1142 switch (mode) { 1142 switch (type) {
1143#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_0
1144 case 0: 1143 case 0:
1145 reg_map = wm8350_mode0_defaults; 1144 switch (mode) {
1146 break; 1145#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_0
1146 case 0:
1147 reg_map = wm8350_mode0_defaults;
1148 break;
1147#endif 1149#endif
1148#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_1 1150#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_1
1149 case 1: 1151 case 1:
1150 reg_map = wm8350_mode1_defaults; 1152 reg_map = wm8350_mode1_defaults;
1151 break; 1153 break;
1152#endif 1154#endif
1153#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_2 1155#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_2
1154 case 2: 1156 case 2:
1155 reg_map = wm8350_mode2_defaults; 1157 reg_map = wm8350_mode2_defaults;
1156 break; 1158 break;
1157#endif 1159#endif
1158#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_3 1160#ifdef CONFIG_MFD_WM8350_CONFIG_MODE_3
1159 case 3: 1161 case 3:
1160 reg_map = wm8350_mode3_defaults; 1162 reg_map = wm8350_mode3_defaults;
1161 break; 1163 break;
1162#endif 1164#endif
1165 default:
1166 dev_err(wm8350->dev,
1167 "WM8350 configuration mode %d not supported\n",
1168 mode);
1169 return -EINVAL;
1170 }
1171
1172 case 2:
1173 switch (mode) {
1174#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_0
1175 case 0:
1176 reg_map = wm8352_mode0_defaults;
1177 break;
1178#endif
1179#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_1
1180 case 1:
1181 reg_map = wm8352_mode1_defaults;
1182 break;
1183#endif
1184#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_2
1185 case 2:
1186 reg_map = wm8352_mode2_defaults;
1187 break;
1188#endif
1189#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_3
1190 case 3:
1191 reg_map = wm8352_mode3_defaults;
1192 break;
1193#endif
1194 default:
1195 dev_err(wm8350->dev,
1196 "WM8352 configuration mode %d not supported\n",
1197 mode);
1198 return -EINVAL;
1199 }
1200 break;
1201
1163 default: 1202 default:
1164 dev_err(wm8350->dev, "Configuration mode %d not supported\n", 1203 dev_err(wm8350->dev,
1204 "WM835x configuration mode %d not supported\n",
1165 mode); 1205 mode);
1166 return -EINVAL; 1206 return -EINVAL;
1167 } 1207 }
@@ -1284,13 +1324,27 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq,
1284 } 1324 }
1285 break; 1325 break;
1286 1326
1327 case 2:
1328 switch (chip_rev) {
1329 case 0:
1330 dev_info(wm8350->dev, "WM8352 Rev A\n");
1331 wm8350->power.rev_g_coeff = 1;
1332 break;
1333
1334 default:
1335 dev_err(wm8350->dev, "Unknown WM8352 CHIP_REV\n");
1336 ret = -ENODEV;
1337 goto err;
1338 }
1339 break;
1340
1287 default: 1341 default:
1288 dev_err(wm8350->dev, "Unknown MASK_REV\n"); 1342 dev_err(wm8350->dev, "Unknown MASK_REV\n");
1289 ret = -ENODEV; 1343 ret = -ENODEV;
1290 goto err; 1344 goto err;
1291 } 1345 }
1292 1346
1293 ret = wm8350_create_cache(wm8350, mode); 1347 ret = wm8350_create_cache(wm8350, mask_rev, mode);
1294 if (ret < 0) { 1348 if (ret < 0) {
1295 dev_err(wm8350->dev, "Failed to create register cache\n"); 1349 dev_err(wm8350->dev, "Failed to create register cache\n");
1296 return ret; 1350 return ret;
diff --git a/drivers/mfd/wm8350-i2c.c b/drivers/mfd/wm8350-i2c.c
index 876e693582bd..878051253084 100644
--- a/drivers/mfd/wm8350-i2c.c
+++ b/drivers/mfd/wm8350-i2c.c
@@ -97,6 +97,7 @@ static int wm8350_i2c_remove(struct i2c_client *i2c)
97 97
98static const struct i2c_device_id wm8350_i2c_id[] = { 98static const struct i2c_device_id wm8350_i2c_id[] = {
99 { "wm8350", 0 }, 99 { "wm8350", 0 },
100 { "wm8352", 0 },
100 { } 101 { }
101}; 102};
102MODULE_DEVICE_TABLE(i2c, wm8350_i2c_id); 103MODULE_DEVICE_TABLE(i2c, wm8350_i2c_id);
diff --git a/drivers/mfd/wm8350-regmap.c b/drivers/mfd/wm8350-regmap.c
index b43d64c2b920..3e2cc37961f3 100644
--- a/drivers/mfd/wm8350-regmap.c
+++ b/drivers/mfd/wm8350-regmap.c
@@ -1074,6 +1074,1058 @@ const u16 wm8350_mode3_defaults[] = {
1074}; 1074};
1075#endif 1075#endif
1076 1076
1077#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_0
1078
1079#undef WM8350_HAVE_CONFIG_MODE
1080#define WM8350_HAVE_CONFIG_MODE
1081
1082const u16 wm8352_mode0_defaults[] = {
1083 0x6143, /* R0 - Reset/ID */
1084 0x0000, /* R1 - ID */
1085 0x0002, /* R2 - Revision */
1086 0x1C02, /* R3 - System Control 1 */
1087 0x0004, /* R4 - System Control 2 */
1088 0x0000, /* R5 - System Hibernate */
1089 0x8A00, /* R6 - Interface Control */
1090 0x0000, /* R7 */
1091 0x8000, /* R8 - Power mgmt (1) */
1092 0x0000, /* R9 - Power mgmt (2) */
1093 0x0000, /* R10 - Power mgmt (3) */
1094 0x2000, /* R11 - Power mgmt (4) */
1095 0x0E00, /* R12 - Power mgmt (5) */
1096 0x0000, /* R13 - Power mgmt (6) */
1097 0x0000, /* R14 - Power mgmt (7) */
1098 0x0000, /* R15 */
1099 0x0000, /* R16 - RTC Seconds/Minutes */
1100 0x0100, /* R17 - RTC Hours/Day */
1101 0x0101, /* R18 - RTC Date/Month */
1102 0x1400, /* R19 - RTC Year */
1103 0x0000, /* R20 - Alarm Seconds/Minutes */
1104 0x0000, /* R21 - Alarm Hours/Day */
1105 0x0000, /* R22 - Alarm Date/Month */
1106 0x0320, /* R23 - RTC Time Control */
1107 0x0000, /* R24 - System Interrupts */
1108 0x0000, /* R25 - Interrupt Status 1 */
1109 0x0000, /* R26 - Interrupt Status 2 */
1110 0x0000, /* R27 */
1111 0x0000, /* R28 - Under Voltage Interrupt status */
1112 0x0000, /* R29 - Over Current Interrupt status */
1113 0x0000, /* R30 - GPIO Interrupt Status */
1114 0x0000, /* R31 - Comparator Interrupt Status */
1115 0x3FFF, /* R32 - System Interrupts Mask */
1116 0x0000, /* R33 - Interrupt Status 1 Mask */
1117 0x0000, /* R34 - Interrupt Status 2 Mask */
1118 0x0000, /* R35 */
1119 0x0000, /* R36 - Under Voltage Interrupt status Mask */
1120 0x0000, /* R37 - Over Current Interrupt status Mask */
1121 0x0000, /* R38 - GPIO Interrupt Status Mask */
1122 0x0000, /* R39 - Comparator Interrupt Status Mask */
1123 0x0040, /* R40 - Clock Control 1 */
1124 0x0000, /* R41 - Clock Control 2 */
1125 0x3A00, /* R42 - FLL Control 1 */
1126 0x7086, /* R43 - FLL Control 2 */
1127 0xC226, /* R44 - FLL Control 3 */
1128 0x0000, /* R45 - FLL Control 4 */
1129 0x0000, /* R46 */
1130 0x0000, /* R47 */
1131 0x0000, /* R48 - DAC Control */
1132 0x0000, /* R49 */
1133 0x00C0, /* R50 - DAC Digital Volume L */
1134 0x00C0, /* R51 - DAC Digital Volume R */
1135 0x0000, /* R52 */
1136 0x0040, /* R53 - DAC LR Rate */
1137 0x0000, /* R54 - DAC Clock Control */
1138 0x0000, /* R55 */
1139 0x0000, /* R56 */
1140 0x0000, /* R57 */
1141 0x4000, /* R58 - DAC Mute */
1142 0x0000, /* R59 - DAC Mute Volume */
1143 0x0000, /* R60 - DAC Side */
1144 0x0000, /* R61 */
1145 0x0000, /* R62 */
1146 0x0000, /* R63 */
1147 0x8000, /* R64 - ADC Control */
1148 0x0000, /* R65 */
1149 0x00C0, /* R66 - ADC Digital Volume L */
1150 0x00C0, /* R67 - ADC Digital Volume R */
1151 0x0000, /* R68 - ADC Divider */
1152 0x0000, /* R69 */
1153 0x0040, /* R70 - ADC LR Rate */
1154 0x0000, /* R71 */
1155 0x0303, /* R72 - Input Control */
1156 0x0000, /* R73 - IN3 Input Control */
1157 0x0000, /* R74 - Mic Bias Control */
1158 0x0000, /* R75 */
1159 0x0000, /* R76 - Output Control */
1160 0x0000, /* R77 - Jack Detect */
1161 0x0000, /* R78 - Anti Pop Control */
1162 0x0000, /* R79 */
1163 0x0040, /* R80 - Left Input Volume */
1164 0x0040, /* R81 - Right Input Volume */
1165 0x0000, /* R82 */
1166 0x0000, /* R83 */
1167 0x0000, /* R84 */
1168 0x0000, /* R85 */
1169 0x0000, /* R86 */
1170 0x0000, /* R87 */
1171 0x0800, /* R88 - Left Mixer Control */
1172 0x1000, /* R89 - Right Mixer Control */
1173 0x0000, /* R90 */
1174 0x0000, /* R91 */
1175 0x0000, /* R92 - OUT3 Mixer Control */
1176 0x0000, /* R93 - OUT4 Mixer Control */
1177 0x0000, /* R94 */
1178 0x0000, /* R95 */
1179 0x0000, /* R96 - Output Left Mixer Volume */
1180 0x0000, /* R97 - Output Right Mixer Volume */
1181 0x0000, /* R98 - Input Mixer Volume L */
1182 0x0000, /* R99 - Input Mixer Volume R */
1183 0x0000, /* R100 - Input Mixer Volume */
1184 0x0000, /* R101 */
1185 0x0000, /* R102 */
1186 0x0000, /* R103 */
1187 0x00E4, /* R104 - OUT1L Volume */
1188 0x00E4, /* R105 - OUT1R Volume */
1189 0x00E4, /* R106 - OUT2L Volume */
1190 0x02E4, /* R107 - OUT2R Volume */
1191 0x0000, /* R108 */
1192 0x0000, /* R109 */
1193 0x0000, /* R110 */
1194 0x0000, /* R111 - BEEP Volume */
1195 0x0A00, /* R112 - AI Formating */
1196 0x0000, /* R113 - ADC DAC COMP */
1197 0x0020, /* R114 - AI ADC Control */
1198 0x0020, /* R115 - AI DAC Control */
1199 0x0000, /* R116 */
1200 0x0000, /* R117 */
1201 0x0000, /* R118 */
1202 0x0000, /* R119 */
1203 0x0000, /* R120 */
1204 0x0000, /* R121 */
1205 0x0000, /* R122 */
1206 0x0000, /* R123 */
1207 0x0000, /* R124 */
1208 0x0000, /* R125 */
1209 0x0000, /* R126 */
1210 0x0000, /* R127 */
1211 0x1FFF, /* R128 - GPIO Debounce */
1212 0x0000, /* R129 - GPIO Pin pull up Control */
1213 0x0000, /* R130 - GPIO Pull down Control */
1214 0x0000, /* R131 - GPIO Interrupt Mode */
1215 0x0000, /* R132 */
1216 0x0000, /* R133 - GPIO Control */
1217 0x0FFC, /* R134 - GPIO Configuration (i/o) */
1218 0x0FFC, /* R135 - GPIO Pin Polarity / Type */
1219 0x0000, /* R136 */
1220 0x0000, /* R137 */
1221 0x0000, /* R138 */
1222 0x0000, /* R139 */
1223 0x0013, /* R140 - GPIO Function Select 1 */
1224 0x0000, /* R141 - GPIO Function Select 2 */
1225 0x0000, /* R142 - GPIO Function Select 3 */
1226 0x0003, /* R143 - GPIO Function Select 4 */
1227 0x0000, /* R144 - Digitiser Control (1) */
1228 0x0002, /* R145 - Digitiser Control (2) */
1229 0x0000, /* R146 */
1230 0x0000, /* R147 */
1231 0x0000, /* R148 */
1232 0x0000, /* R149 */
1233 0x0000, /* R150 */
1234 0x0000, /* R151 */
1235 0x7000, /* R152 - AUX1 Readback */
1236 0x7000, /* R153 - AUX2 Readback */
1237 0x7000, /* R154 - AUX3 Readback */
1238 0x7000, /* R155 - AUX4 Readback */
1239 0x0000, /* R156 - USB Voltage Readback */
1240 0x0000, /* R157 - LINE Voltage Readback */
1241 0x0000, /* R158 - BATT Voltage Readback */
1242 0x0000, /* R159 - Chip Temp Readback */
1243 0x0000, /* R160 */
1244 0x0000, /* R161 */
1245 0x0000, /* R162 */
1246 0x0000, /* R163 - Generic Comparator Control */
1247 0x0000, /* R164 - Generic comparator 1 */
1248 0x0000, /* R165 - Generic comparator 2 */
1249 0x0000, /* R166 - Generic comparator 3 */
1250 0x0000, /* R167 - Generic comparator 4 */
1251 0xA00F, /* R168 - Battery Charger Control 1 */
1252 0x0B06, /* R169 - Battery Charger Control 2 */
1253 0x0000, /* R170 - Battery Charger Control 3 */
1254 0x0000, /* R171 */
1255 0x0000, /* R172 - Current Sink Driver A */
1256 0x0000, /* R173 - CSA Flash control */
1257 0x0000, /* R174 - Current Sink Driver B */
1258 0x0000, /* R175 - CSB Flash control */
1259 0x0000, /* R176 - DCDC/LDO requested */
1260 0x032D, /* R177 - DCDC Active options */
1261 0x0000, /* R178 - DCDC Sleep options */
1262 0x0025, /* R179 - Power-check comparator */
1263 0x000E, /* R180 - DCDC1 Control */
1264 0x0000, /* R181 - DCDC1 Timeouts */
1265 0x1006, /* R182 - DCDC1 Low Power */
1266 0x0018, /* R183 - DCDC2 Control */
1267 0x0000, /* R184 - DCDC2 Timeouts */
1268 0x0000, /* R185 */
1269 0x0000, /* R186 - DCDC3 Control */
1270 0x0000, /* R187 - DCDC3 Timeouts */
1271 0x0006, /* R188 - DCDC3 Low Power */
1272 0x0000, /* R189 - DCDC4 Control */
1273 0x0000, /* R190 - DCDC4 Timeouts */
1274 0x0006, /* R191 - DCDC4 Low Power */
1275 0x0008, /* R192 - DCDC5 Control */
1276 0x0000, /* R193 - DCDC5 Timeouts */
1277 0x0000, /* R194 */
1278 0x0000, /* R195 - DCDC6 Control */
1279 0x0000, /* R196 - DCDC6 Timeouts */
1280 0x0006, /* R197 - DCDC6 Low Power */
1281 0x0000, /* R198 */
1282 0x0003, /* R199 - Limit Switch Control */
1283 0x001C, /* R200 - LDO1 Control */
1284 0x0000, /* R201 - LDO1 Timeouts */
1285 0x001C, /* R202 - LDO1 Low Power */
1286 0x001B, /* R203 - LDO2 Control */
1287 0x0000, /* R204 - LDO2 Timeouts */
1288 0x001C, /* R205 - LDO2 Low Power */
1289 0x001B, /* R206 - LDO3 Control */
1290 0x0000, /* R207 - LDO3 Timeouts */
1291 0x001C, /* R208 - LDO3 Low Power */
1292 0x001B, /* R209 - LDO4 Control */
1293 0x0000, /* R210 - LDO4 Timeouts */
1294 0x001C, /* R211 - LDO4 Low Power */
1295 0x0000, /* R212 */
1296 0x0000, /* R213 */
1297 0x0000, /* R214 */
1298 0x0000, /* R215 - VCC_FAULT Masks */
1299 0x001F, /* R216 - Main Bandgap Control */
1300 0x0000, /* R217 - OSC Control */
1301 0x9000, /* R218 - RTC Tick Control */
1302 0x0000, /* R219 - Security1 */
1303 0x4000, /* R220 */
1304 0x0000, /* R221 */
1305 0x0000, /* R222 */
1306 0x0000, /* R223 */
1307 0x0000, /* R224 - Signal overrides */
1308 0x0000, /* R225 - DCDC/LDO status */
1309 0x0000, /* R226 - Charger Overides/status */
1310 0x0000, /* R227 - misc overrides */
1311 0x0000, /* R228 - Supply overrides/status 1 */
1312 0x0000, /* R229 - Supply overrides/status 2 */
1313 0xE000, /* R230 - GPIO Pin Status */
1314 0x0000, /* R231 - comparotor overrides */
1315 0x0000, /* R232 */
1316 0x0000, /* R233 - State Machine status */
1317 0x1200, /* R234 */
1318 0x0000, /* R235 */
1319 0x8000, /* R236 */
1320 0x0000, /* R237 */
1321 0x0000, /* R238 */
1322 0x0000, /* R239 */
1323 0x0003, /* R240 */
1324 0x0000, /* R241 */
1325 0x0000, /* R242 */
1326 0x0004, /* R243 */
1327 0x0300, /* R244 */
1328 0x0000, /* R245 */
1329 0x0200, /* R246 */
1330 0x0000, /* R247 */
1331 0x1000, /* R248 - DCDC1 Test Controls */
1332 0x5000, /* R249 */
1333 0x1000, /* R250 - DCDC3 Test Controls */
1334 0x1000, /* R251 - DCDC4 Test Controls */
1335 0x5100, /* R252 */
1336 0x1000, /* R253 - DCDC6 Test Controls */
1337};
1338#endif
1339
1340#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_1
1341
1342#undef WM8350_HAVE_CONFIG_MODE
1343#define WM8350_HAVE_CONFIG_MODE
1344
1345const u16 wm8352_mode1_defaults[] = {
1346 0x6143, /* R0 - Reset/ID */
1347 0x0000, /* R1 - ID */
1348 0x0002, /* R2 - Revision */
1349 0x1C02, /* R3 - System Control 1 */
1350 0x0204, /* R4 - System Control 2 */
1351 0x0000, /* R5 - System Hibernate */
1352 0x8A00, /* R6 - Interface Control */
1353 0x0000, /* R7 */
1354 0x8000, /* R8 - Power mgmt (1) */
1355 0x0000, /* R9 - Power mgmt (2) */
1356 0x0000, /* R10 - Power mgmt (3) */
1357 0x2000, /* R11 - Power mgmt (4) */
1358 0x0E00, /* R12 - Power mgmt (5) */
1359 0x0000, /* R13 - Power mgmt (6) */
1360 0x0000, /* R14 - Power mgmt (7) */
1361 0x0000, /* R15 */
1362 0x0000, /* R16 - RTC Seconds/Minutes */
1363 0x0100, /* R17 - RTC Hours/Day */
1364 0x0101, /* R18 - RTC Date/Month */
1365 0x1400, /* R19 - RTC Year */
1366 0x0000, /* R20 - Alarm Seconds/Minutes */
1367 0x0000, /* R21 - Alarm Hours/Day */
1368 0x0000, /* R22 - Alarm Date/Month */
1369 0x0320, /* R23 - RTC Time Control */
1370 0x0000, /* R24 - System Interrupts */
1371 0x0000, /* R25 - Interrupt Status 1 */
1372 0x0000, /* R26 - Interrupt Status 2 */
1373 0x0000, /* R27 */
1374 0x0000, /* R28 - Under Voltage Interrupt status */
1375 0x0000, /* R29 - Over Current Interrupt status */
1376 0x0000, /* R30 - GPIO Interrupt Status */
1377 0x0000, /* R31 - Comparator Interrupt Status */
1378 0x3FFF, /* R32 - System Interrupts Mask */
1379 0x0000, /* R33 - Interrupt Status 1 Mask */
1380 0x0000, /* R34 - Interrupt Status 2 Mask */
1381 0x0000, /* R35 */
1382 0x0000, /* R36 - Under Voltage Interrupt status Mask */
1383 0x0000, /* R37 - Over Current Interrupt status Mask */
1384 0x0000, /* R38 - GPIO Interrupt Status Mask */
1385 0x0000, /* R39 - Comparator Interrupt Status Mask */
1386 0x0040, /* R40 - Clock Control 1 */
1387 0x0000, /* R41 - Clock Control 2 */
1388 0x3A00, /* R42 - FLL Control 1 */
1389 0x7086, /* R43 - FLL Control 2 */
1390 0xC226, /* R44 - FLL Control 3 */
1391 0x0000, /* R45 - FLL Control 4 */
1392 0x0000, /* R46 */
1393 0x0000, /* R47 */
1394 0x0000, /* R48 - DAC Control */
1395 0x0000, /* R49 */
1396 0x00C0, /* R50 - DAC Digital Volume L */
1397 0x00C0, /* R51 - DAC Digital Volume R */
1398 0x0000, /* R52 */
1399 0x0040, /* R53 - DAC LR Rate */
1400 0x0000, /* R54 - DAC Clock Control */
1401 0x0000, /* R55 */
1402 0x0000, /* R56 */
1403 0x0000, /* R57 */
1404 0x4000, /* R58 - DAC Mute */
1405 0x0000, /* R59 - DAC Mute Volume */
1406 0x0000, /* R60 - DAC Side */
1407 0x0000, /* R61 */
1408 0x0000, /* R62 */
1409 0x0000, /* R63 */
1410 0x8000, /* R64 - ADC Control */
1411 0x0000, /* R65 */
1412 0x00C0, /* R66 - ADC Digital Volume L */
1413 0x00C0, /* R67 - ADC Digital Volume R */
1414 0x0000, /* R68 - ADC Divider */
1415 0x0000, /* R69 */
1416 0x0040, /* R70 - ADC LR Rate */
1417 0x0000, /* R71 */
1418 0x0303, /* R72 - Input Control */
1419 0x0000, /* R73 - IN3 Input Control */
1420 0x0000, /* R74 - Mic Bias Control */
1421 0x0000, /* R75 */
1422 0x0000, /* R76 - Output Control */
1423 0x0000, /* R77 - Jack Detect */
1424 0x0000, /* R78 - Anti Pop Control */
1425 0x0000, /* R79 */
1426 0x0040, /* R80 - Left Input Volume */
1427 0x0040, /* R81 - Right Input Volume */
1428 0x0000, /* R82 */
1429 0x0000, /* R83 */
1430 0x0000, /* R84 */
1431 0x0000, /* R85 */
1432 0x0000, /* R86 */
1433 0x0000, /* R87 */
1434 0x0800, /* R88 - Left Mixer Control */
1435 0x1000, /* R89 - Right Mixer Control */
1436 0x0000, /* R90 */
1437 0x0000, /* R91 */
1438 0x0000, /* R92 - OUT3 Mixer Control */
1439 0x0000, /* R93 - OUT4 Mixer Control */
1440 0x0000, /* R94 */
1441 0x0000, /* R95 */
1442 0x0000, /* R96 - Output Left Mixer Volume */
1443 0x0000, /* R97 - Output Right Mixer Volume */
1444 0x0000, /* R98 - Input Mixer Volume L */
1445 0x0000, /* R99 - Input Mixer Volume R */
1446 0x0000, /* R100 - Input Mixer Volume */
1447 0x0000, /* R101 */
1448 0x0000, /* R102 */
1449 0x0000, /* R103 */
1450 0x00E4, /* R104 - OUT1L Volume */
1451 0x00E4, /* R105 - OUT1R Volume */
1452 0x00E4, /* R106 - OUT2L Volume */
1453 0x02E4, /* R107 - OUT2R Volume */
1454 0x0000, /* R108 */
1455 0x0000, /* R109 */
1456 0x0000, /* R110 */
1457 0x0000, /* R111 - BEEP Volume */
1458 0x0A00, /* R112 - AI Formating */
1459 0x0000, /* R113 - ADC DAC COMP */
1460 0x0020, /* R114 - AI ADC Control */
1461 0x0020, /* R115 - AI DAC Control */
1462 0x0000, /* R116 */
1463 0x0000, /* R117 */
1464 0x0000, /* R118 */
1465 0x0000, /* R119 */
1466 0x0000, /* R120 */
1467 0x0000, /* R121 */
1468 0x0000, /* R122 */
1469 0x0000, /* R123 */
1470 0x0000, /* R124 */
1471 0x0000, /* R125 */
1472 0x0000, /* R126 */
1473 0x0000, /* R127 */
1474 0x1FFF, /* R128 - GPIO Debounce */
1475 0x0000, /* R129 - GPIO Pin pull up Control */
1476 0x0000, /* R130 - GPIO Pull down Control */
1477 0x0000, /* R131 - GPIO Interrupt Mode */
1478 0x0000, /* R132 */
1479 0x0000, /* R133 - GPIO Control */
1480 0x0BFB, /* R134 - GPIO Configuration (i/o) */
1481 0x0FFF, /* R135 - GPIO Pin Polarity / Type */
1482 0x0000, /* R136 */
1483 0x0000, /* R137 */
1484 0x0000, /* R138 */
1485 0x0000, /* R139 */
1486 0x0300, /* R140 - GPIO Function Select 1 */
1487 0x0000, /* R141 - GPIO Function Select 2 */
1488 0x2300, /* R142 - GPIO Function Select 3 */
1489 0x0003, /* R143 - GPIO Function Select 4 */
1490 0x0000, /* R144 - Digitiser Control (1) */
1491 0x0002, /* R145 - Digitiser Control (2) */
1492 0x0000, /* R146 */
1493 0x0000, /* R147 */
1494 0x0000, /* R148 */
1495 0x0000, /* R149 */
1496 0x0000, /* R150 */
1497 0x0000, /* R151 */
1498 0x7000, /* R152 - AUX1 Readback */
1499 0x7000, /* R153 - AUX2 Readback */
1500 0x7000, /* R154 - AUX3 Readback */
1501 0x7000, /* R155 - AUX4 Readback */
1502 0x0000, /* R156 - USB Voltage Readback */
1503 0x0000, /* R157 - LINE Voltage Readback */
1504 0x0000, /* R158 - BATT Voltage Readback */
1505 0x0000, /* R159 - Chip Temp Readback */
1506 0x0000, /* R160 */
1507 0x0000, /* R161 */
1508 0x0000, /* R162 */
1509 0x0000, /* R163 - Generic Comparator Control */
1510 0x0000, /* R164 - Generic comparator 1 */
1511 0x0000, /* R165 - Generic comparator 2 */
1512 0x0000, /* R166 - Generic comparator 3 */
1513 0x0000, /* R167 - Generic comparator 4 */
1514 0xA00F, /* R168 - Battery Charger Control 1 */
1515 0x0B06, /* R169 - Battery Charger Control 2 */
1516 0x0000, /* R170 - Battery Charger Control 3 */
1517 0x0000, /* R171 */
1518 0x0000, /* R172 - Current Sink Driver A */
1519 0x0000, /* R173 - CSA Flash control */
1520 0x0000, /* R174 - Current Sink Driver B */
1521 0x0000, /* R175 - CSB Flash control */
1522 0x0000, /* R176 - DCDC/LDO requested */
1523 0x032D, /* R177 - DCDC Active options */
1524 0x0000, /* R178 - DCDC Sleep options */
1525 0x0025, /* R179 - Power-check comparator */
1526 0x0062, /* R180 - DCDC1 Control */
1527 0x0400, /* R181 - DCDC1 Timeouts */
1528 0x1006, /* R182 - DCDC1 Low Power */
1529 0x0018, /* R183 - DCDC2 Control */
1530 0x0000, /* R184 - DCDC2 Timeouts */
1531 0x0000, /* R185 */
1532 0x0006, /* R186 - DCDC3 Control */
1533 0x0800, /* R187 - DCDC3 Timeouts */
1534 0x0006, /* R188 - DCDC3 Low Power */
1535 0x0006, /* R189 - DCDC4 Control */
1536 0x0C00, /* R190 - DCDC4 Timeouts */
1537 0x0006, /* R191 - DCDC4 Low Power */
1538 0x0008, /* R192 - DCDC5 Control */
1539 0x0000, /* R193 - DCDC5 Timeouts */
1540 0x0000, /* R194 */
1541 0x0026, /* R195 - DCDC6 Control */
1542 0x1000, /* R196 - DCDC6 Timeouts */
1543 0x0006, /* R197 - DCDC6 Low Power */
1544 0x0000, /* R198 */
1545 0x0003, /* R199 - Limit Switch Control */
1546 0x0002, /* R200 - LDO1 Control */
1547 0x0000, /* R201 - LDO1 Timeouts */
1548 0x001C, /* R202 - LDO1 Low Power */
1549 0x001A, /* R203 - LDO2 Control */
1550 0x0000, /* R204 - LDO2 Timeouts */
1551 0x001C, /* R205 - LDO2 Low Power */
1552 0x001F, /* R206 - LDO3 Control */
1553 0x0000, /* R207 - LDO3 Timeouts */
1554 0x001C, /* R208 - LDO3 Low Power */
1555 0x001F, /* R209 - LDO4 Control */
1556 0x0000, /* R210 - LDO4 Timeouts */
1557 0x001C, /* R211 - LDO4 Low Power */
1558 0x0000, /* R212 */
1559 0x0000, /* R213 */
1560 0x0000, /* R214 */
1561 0x0000, /* R215 - VCC_FAULT Masks */
1562 0x001F, /* R216 - Main Bandgap Control */
1563 0x0000, /* R217 - OSC Control */
1564 0x9000, /* R218 - RTC Tick Control */
1565 0x0000, /* R219 - Security1 */
1566 0x4000, /* R220 */
1567 0x0000, /* R221 */
1568 0x0000, /* R222 */
1569 0x0000, /* R223 */
1570 0x0000, /* R224 - Signal overrides */
1571 0x0000, /* R225 - DCDC/LDO status */
1572 0x0000, /* R226 - Charger Overides/status */
1573 0x0000, /* R227 - misc overrides */
1574 0x0000, /* R228 - Supply overrides/status 1 */
1575 0x0000, /* R229 - Supply overrides/status 2 */
1576 0xE000, /* R230 - GPIO Pin Status */
1577 0x0000, /* R231 - comparotor overrides */
1578 0x0000, /* R232 */
1579 0x0000, /* R233 - State Machine status */
1580 0x1200, /* R234 */
1581 0x0000, /* R235 */
1582 0x8000, /* R236 */
1583 0x0000, /* R237 */
1584 0x0000, /* R238 */
1585 0x0000, /* R239 */
1586 0x0003, /* R240 */
1587 0x0000, /* R241 */
1588 0x0000, /* R242 */
1589 0x0004, /* R243 */
1590 0x0300, /* R244 */
1591 0x0000, /* R245 */
1592 0x0200, /* R246 */
1593 0x0000, /* R247 */
1594 0x1000, /* R248 - DCDC1 Test Controls */
1595 0x5000, /* R249 */
1596 0x1000, /* R250 - DCDC3 Test Controls */
1597 0x1000, /* R251 - DCDC4 Test Controls */
1598 0x5100, /* R252 */
1599 0x1000, /* R253 - DCDC6 Test Controls */
1600};
1601#endif
1602
1603#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_2
1604
1605#undef WM8350_HAVE_CONFIG_MODE
1606#define WM8350_HAVE_CONFIG_MODE
1607
1608const u16 wm8352_mode2_defaults[] = {
1609 0x6143, /* R0 - Reset/ID */
1610 0x0000, /* R1 - ID */
1611 0x0002, /* R2 - Revision */
1612 0x1C02, /* R3 - System Control 1 */
1613 0x0204, /* R4 - System Control 2 */
1614 0x0000, /* R5 - System Hibernate */
1615 0x8A00, /* R6 - Interface Control */
1616 0x0000, /* R7 */
1617 0x8000, /* R8 - Power mgmt (1) */
1618 0x0000, /* R9 - Power mgmt (2) */
1619 0x0000, /* R10 - Power mgmt (3) */
1620 0x2000, /* R11 - Power mgmt (4) */
1621 0x0E00, /* R12 - Power mgmt (5) */
1622 0x0000, /* R13 - Power mgmt (6) */
1623 0x0000, /* R14 - Power mgmt (7) */
1624 0x0000, /* R15 */
1625 0x0000, /* R16 - RTC Seconds/Minutes */
1626 0x0100, /* R17 - RTC Hours/Day */
1627 0x0101, /* R18 - RTC Date/Month */
1628 0x1400, /* R19 - RTC Year */
1629 0x0000, /* R20 - Alarm Seconds/Minutes */
1630 0x0000, /* R21 - Alarm Hours/Day */
1631 0x0000, /* R22 - Alarm Date/Month */
1632 0x0320, /* R23 - RTC Time Control */
1633 0x0000, /* R24 - System Interrupts */
1634 0x0000, /* R25 - Interrupt Status 1 */
1635 0x0000, /* R26 - Interrupt Status 2 */
1636 0x0000, /* R27 */
1637 0x0000, /* R28 - Under Voltage Interrupt status */
1638 0x0000, /* R29 - Over Current Interrupt status */
1639 0x0000, /* R30 - GPIO Interrupt Status */
1640 0x0000, /* R31 - Comparator Interrupt Status */
1641 0x3FFF, /* R32 - System Interrupts Mask */
1642 0x0000, /* R33 - Interrupt Status 1 Mask */
1643 0x0000, /* R34 - Interrupt Status 2 Mask */
1644 0x0000, /* R35 */
1645 0x0000, /* R36 - Under Voltage Interrupt status Mask */
1646 0x0000, /* R37 - Over Current Interrupt status Mask */
1647 0x0000, /* R38 - GPIO Interrupt Status Mask */
1648 0x0000, /* R39 - Comparator Interrupt Status Mask */
1649 0x0040, /* R40 - Clock Control 1 */
1650 0x0000, /* R41 - Clock Control 2 */
1651 0x3A00, /* R42 - FLL Control 1 */
1652 0x7086, /* R43 - FLL Control 2 */
1653 0xC226, /* R44 - FLL Control 3 */
1654 0x0000, /* R45 - FLL Control 4 */
1655 0x0000, /* R46 */
1656 0x0000, /* R47 */
1657 0x0000, /* R48 - DAC Control */
1658 0x0000, /* R49 */
1659 0x00C0, /* R50 - DAC Digital Volume L */
1660 0x00C0, /* R51 - DAC Digital Volume R */
1661 0x0000, /* R52 */
1662 0x0040, /* R53 - DAC LR Rate */
1663 0x0000, /* R54 - DAC Clock Control */
1664 0x0000, /* R55 */
1665 0x0000, /* R56 */
1666 0x0000, /* R57 */
1667 0x4000, /* R58 - DAC Mute */
1668 0x0000, /* R59 - DAC Mute Volume */
1669 0x0000, /* R60 - DAC Side */
1670 0x0000, /* R61 */
1671 0x0000, /* R62 */
1672 0x0000, /* R63 */
1673 0x8000, /* R64 - ADC Control */
1674 0x0000, /* R65 */
1675 0x00C0, /* R66 - ADC Digital Volume L */
1676 0x00C0, /* R67 - ADC Digital Volume R */
1677 0x0000, /* R68 - ADC Divider */
1678 0x0000, /* R69 */
1679 0x0040, /* R70 - ADC LR Rate */
1680 0x0000, /* R71 */
1681 0x0303, /* R72 - Input Control */
1682 0x0000, /* R73 - IN3 Input Control */
1683 0x0000, /* R74 - Mic Bias Control */
1684 0x0000, /* R75 */
1685 0x0000, /* R76 - Output Control */
1686 0x0000, /* R77 - Jack Detect */
1687 0x0000, /* R78 - Anti Pop Control */
1688 0x0000, /* R79 */
1689 0x0040, /* R80 - Left Input Volume */
1690 0x0040, /* R81 - Right Input Volume */
1691 0x0000, /* R82 */
1692 0x0000, /* R83 */
1693 0x0000, /* R84 */
1694 0x0000, /* R85 */
1695 0x0000, /* R86 */
1696 0x0000, /* R87 */
1697 0x0800, /* R88 - Left Mixer Control */
1698 0x1000, /* R89 - Right Mixer Control */
1699 0x0000, /* R90 */
1700 0x0000, /* R91 */
1701 0x0000, /* R92 - OUT3 Mixer Control */
1702 0x0000, /* R93 - OUT4 Mixer Control */
1703 0x0000, /* R94 */
1704 0x0000, /* R95 */
1705 0x0000, /* R96 - Output Left Mixer Volume */
1706 0x0000, /* R97 - Output Right Mixer Volume */
1707 0x0000, /* R98 - Input Mixer Volume L */
1708 0x0000, /* R99 - Input Mixer Volume R */
1709 0x0000, /* R100 - Input Mixer Volume */
1710 0x0000, /* R101 */
1711 0x0000, /* R102 */
1712 0x0000, /* R103 */
1713 0x00E4, /* R104 - OUT1L Volume */
1714 0x00E4, /* R105 - OUT1R Volume */
1715 0x00E4, /* R106 - OUT2L Volume */
1716 0x02E4, /* R107 - OUT2R Volume */
1717 0x0000, /* R108 */
1718 0x0000, /* R109 */
1719 0x0000, /* R110 */
1720 0x0000, /* R111 - BEEP Volume */
1721 0x0A00, /* R112 - AI Formating */
1722 0x0000, /* R113 - ADC DAC COMP */
1723 0x0020, /* R114 - AI ADC Control */
1724 0x0020, /* R115 - AI DAC Control */
1725 0x0000, /* R116 */
1726 0x0000, /* R117 */
1727 0x0000, /* R118 */
1728 0x0000, /* R119 */
1729 0x0000, /* R120 */
1730 0x0000, /* R121 */
1731 0x0000, /* R122 */
1732 0x0000, /* R123 */
1733 0x0000, /* R124 */
1734 0x0000, /* R125 */
1735 0x0000, /* R126 */
1736 0x0000, /* R127 */
1737 0x1FFF, /* R128 - GPIO Debounce */
1738 0x0000, /* R129 - GPIO Pin pull up Control */
1739 0x0110, /* R130 - GPIO Pull down Control */
1740 0x0000, /* R131 - GPIO Interrupt Mode */
1741 0x0000, /* R132 */
1742 0x0000, /* R133 - GPIO Control */
1743 0x09DA, /* R134 - GPIO Configuration (i/o) */
1744 0x0DD6, /* R135 - GPIO Pin Polarity / Type */
1745 0x0000, /* R136 */
1746 0x0000, /* R137 */
1747 0x0000, /* R138 */
1748 0x0000, /* R139 */
1749 0x1310, /* R140 - GPIO Function Select 1 */
1750 0x0033, /* R141 - GPIO Function Select 2 */
1751 0x2000, /* R142 - GPIO Function Select 3 */
1752 0x0000, /* R143 - GPIO Function Select 4 */
1753 0x0000, /* R144 - Digitiser Control (1) */
1754 0x0002, /* R145 - Digitiser Control (2) */
1755 0x0000, /* R146 */
1756 0x0000, /* R147 */
1757 0x0000, /* R148 */
1758 0x0000, /* R149 */
1759 0x0000, /* R150 */
1760 0x0000, /* R151 */
1761 0x7000, /* R152 - AUX1 Readback */
1762 0x7000, /* R153 - AUX2 Readback */
1763 0x7000, /* R154 - AUX3 Readback */
1764 0x7000, /* R155 - AUX4 Readback */
1765 0x0000, /* R156 - USB Voltage Readback */
1766 0x0000, /* R157 - LINE Voltage Readback */
1767 0x0000, /* R158 - BATT Voltage Readback */
1768 0x0000, /* R159 - Chip Temp Readback */
1769 0x0000, /* R160 */
1770 0x0000, /* R161 */
1771 0x0000, /* R162 */
1772 0x0000, /* R163 - Generic Comparator Control */
1773 0x0000, /* R164 - Generic comparator 1 */
1774 0x0000, /* R165 - Generic comparator 2 */
1775 0x0000, /* R166 - Generic comparator 3 */
1776 0x0000, /* R167 - Generic comparator 4 */
1777 0xA00F, /* R168 - Battery Charger Control 1 */
1778 0x0B06, /* R169 - Battery Charger Control 2 */
1779 0x0000, /* R170 - Battery Charger Control 3 */
1780 0x0000, /* R171 */
1781 0x0000, /* R172 - Current Sink Driver A */
1782 0x0000, /* R173 - CSA Flash control */
1783 0x0000, /* R174 - Current Sink Driver B */
1784 0x0000, /* R175 - CSB Flash control */
1785 0x0000, /* R176 - DCDC/LDO requested */
1786 0x032D, /* R177 - DCDC Active options */
1787 0x0000, /* R178 - DCDC Sleep options */
1788 0x0025, /* R179 - Power-check comparator */
1789 0x000E, /* R180 - DCDC1 Control */
1790 0x0800, /* R181 - DCDC1 Timeouts */
1791 0x1006, /* R182 - DCDC1 Low Power */
1792 0x0018, /* R183 - DCDC2 Control */
1793 0x0000, /* R184 - DCDC2 Timeouts */
1794 0x0000, /* R185 */
1795 0x0056, /* R186 - DCDC3 Control */
1796 0x1800, /* R187 - DCDC3 Timeouts */
1797 0x0006, /* R188 - DCDC3 Low Power */
1798 0x000E, /* R189 - DCDC4 Control */
1799 0x1000, /* R190 - DCDC4 Timeouts */
1800 0x0006, /* R191 - DCDC4 Low Power */
1801 0x0008, /* R192 - DCDC5 Control */
1802 0x0000, /* R193 - DCDC5 Timeouts */
1803 0x0000, /* R194 */
1804 0x0026, /* R195 - DCDC6 Control */
1805 0x0C00, /* R196 - DCDC6 Timeouts */
1806 0x0006, /* R197 - DCDC6 Low Power */
1807 0x0000, /* R198 */
1808 0x0003, /* R199 - Limit Switch Control */
1809 0x001C, /* R200 - LDO1 Control */
1810 0x0000, /* R201 - LDO1 Timeouts */
1811 0x001C, /* R202 - LDO1 Low Power */
1812 0x0006, /* R203 - LDO2 Control */
1813 0x0400, /* R204 - LDO2 Timeouts */
1814 0x001C, /* R205 - LDO2 Low Power */
1815 0x001C, /* R206 - LDO3 Control */
1816 0x1400, /* R207 - LDO3 Timeouts */
1817 0x001C, /* R208 - LDO3 Low Power */
1818 0x001A, /* R209 - LDO4 Control */
1819 0x0000, /* R210 - LDO4 Timeouts */
1820 0x001C, /* R211 - LDO4 Low Power */
1821 0x0000, /* R212 */
1822 0x0000, /* R213 */
1823 0x0000, /* R214 */
1824 0x0000, /* R215 - VCC_FAULT Masks */
1825 0x001F, /* R216 - Main Bandgap Control */
1826 0x0000, /* R217 - OSC Control */
1827 0x9000, /* R218 - RTC Tick Control */
1828 0x0000, /* R219 - Security1 */
1829 0x4000, /* R220 */
1830 0x0000, /* R221 */
1831 0x0000, /* R222 */
1832 0x0000, /* R223 */
1833 0x0000, /* R224 - Signal overrides */
1834 0x0000, /* R225 - DCDC/LDO status */
1835 0x0000, /* R226 - Charger Overides/status */
1836 0x0000, /* R227 - misc overrides */
1837 0x0000, /* R228 - Supply overrides/status 1 */
1838 0x0000, /* R229 - Supply overrides/status 2 */
1839 0xE000, /* R230 - GPIO Pin Status */
1840 0x0000, /* R231 - comparotor overrides */
1841 0x0000, /* R232 */
1842 0x0000, /* R233 - State Machine status */
1843 0x1200, /* R234 */
1844 0x0000, /* R235 */
1845 0x8000, /* R236 */
1846 0x0000, /* R237 */
1847 0x0000, /* R238 */
1848 0x0000, /* R239 */
1849 0x0003, /* R240 */
1850 0x0000, /* R241 */
1851 0x0000, /* R242 */
1852 0x0004, /* R243 */
1853 0x0300, /* R244 */
1854 0x0000, /* R245 */
1855 0x0200, /* R246 */
1856 0x0000, /* R247 */
1857 0x1000, /* R248 - DCDC1 Test Controls */
1858 0x5000, /* R249 */
1859 0x1000, /* R250 - DCDC3 Test Controls */
1860 0x1000, /* R251 - DCDC4 Test Controls */
1861 0x5100, /* R252 */
1862 0x1000, /* R253 - DCDC6 Test Controls */
1863};
1864#endif
1865
1866#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_3
1867
1868#undef WM8350_HAVE_CONFIG_MODE
1869#define WM8350_HAVE_CONFIG_MODE
1870
1871const u16 wm8352_mode3_defaults[] = {
1872 0x6143, /* R0 - Reset/ID */
1873 0x0000, /* R1 - ID */
1874 0x0002, /* R2 - Revision */
1875 0x1C02, /* R3 - System Control 1 */
1876 0x0204, /* R4 - System Control 2 */
1877 0x0000, /* R5 - System Hibernate */
1878 0x8A00, /* R6 - Interface Control */
1879 0x0000, /* R7 */
1880 0x8000, /* R8 - Power mgmt (1) */
1881 0x0000, /* R9 - Power mgmt (2) */
1882 0x0000, /* R10 - Power mgmt (3) */
1883 0x2000, /* R11 - Power mgmt (4) */
1884 0x0E00, /* R12 - Power mgmt (5) */
1885 0x0000, /* R13 - Power mgmt (6) */
1886 0x0000, /* R14 - Power mgmt (7) */
1887 0x0000, /* R15 */
1888 0x0000, /* R16 - RTC Seconds/Minutes */
1889 0x0100, /* R17 - RTC Hours/Day */
1890 0x0101, /* R18 - RTC Date/Month */
1891 0x1400, /* R19 - RTC Year */
1892 0x0000, /* R20 - Alarm Seconds/Minutes */
1893 0x0000, /* R21 - Alarm Hours/Day */
1894 0x0000, /* R22 - Alarm Date/Month */
1895 0x0320, /* R23 - RTC Time Control */
1896 0x0000, /* R24 - System Interrupts */
1897 0x0000, /* R25 - Interrupt Status 1 */
1898 0x0000, /* R26 - Interrupt Status 2 */
1899 0x0000, /* R27 */
1900 0x0000, /* R28 - Under Voltage Interrupt status */
1901 0x0000, /* R29 - Over Current Interrupt status */
1902 0x0000, /* R30 - GPIO Interrupt Status */
1903 0x0000, /* R31 - Comparator Interrupt Status */
1904 0x3FFF, /* R32 - System Interrupts Mask */
1905 0x0000, /* R33 - Interrupt Status 1 Mask */
1906 0x0000, /* R34 - Interrupt Status 2 Mask */
1907 0x0000, /* R35 */
1908 0x0000, /* R36 - Under Voltage Interrupt status Mask */
1909 0x0000, /* R37 - Over Current Interrupt status Mask */
1910 0x0000, /* R38 - GPIO Interrupt Status Mask */
1911 0x0000, /* R39 - Comparator Interrupt Status Mask */
1912 0x0040, /* R40 - Clock Control 1 */
1913 0x0000, /* R41 - Clock Control 2 */
1914 0x3A00, /* R42 - FLL Control 1 */
1915 0x7086, /* R43 - FLL Control 2 */
1916 0xC226, /* R44 - FLL Control 3 */
1917 0x0000, /* R45 - FLL Control 4 */
1918 0x0000, /* R46 */
1919 0x0000, /* R47 */
1920 0x0000, /* R48 - DAC Control */
1921 0x0000, /* R49 */
1922 0x00C0, /* R50 - DAC Digital Volume L */
1923 0x00C0, /* R51 - DAC Digital Volume R */
1924 0x0000, /* R52 */
1925 0x0040, /* R53 - DAC LR Rate */
1926 0x0000, /* R54 - DAC Clock Control */
1927 0x0000, /* R55 */
1928 0x0000, /* R56 */
1929 0x0000, /* R57 */
1930 0x4000, /* R58 - DAC Mute */
1931 0x0000, /* R59 - DAC Mute Volume */
1932 0x0000, /* R60 - DAC Side */
1933 0x0000, /* R61 */
1934 0x0000, /* R62 */
1935 0x0000, /* R63 */
1936 0x8000, /* R64 - ADC Control */
1937 0x0000, /* R65 */
1938 0x00C0, /* R66 - ADC Digital Volume L */
1939 0x00C0, /* R67 - ADC Digital Volume R */
1940 0x0000, /* R68 - ADC Divider */
1941 0x0000, /* R69 */
1942 0x0040, /* R70 - ADC LR Rate */
1943 0x0000, /* R71 */
1944 0x0303, /* R72 - Input Control */
1945 0x0000, /* R73 - IN3 Input Control */
1946 0x0000, /* R74 - Mic Bias Control */
1947 0x0000, /* R75 */
1948 0x0000, /* R76 - Output Control */
1949 0x0000, /* R77 - Jack Detect */
1950 0x0000, /* R78 - Anti Pop Control */
1951 0x0000, /* R79 */
1952 0x0040, /* R80 - Left Input Volume */
1953 0x0040, /* R81 - Right Input Volume */
1954 0x0000, /* R82 */
1955 0x0000, /* R83 */
1956 0x0000, /* R84 */
1957 0x0000, /* R85 */
1958 0x0000, /* R86 */
1959 0x0000, /* R87 */
1960 0x0800, /* R88 - Left Mixer Control */
1961 0x1000, /* R89 - Right Mixer Control */
1962 0x0000, /* R90 */
1963 0x0000, /* R91 */
1964 0x0000, /* R92 - OUT3 Mixer Control */
1965 0x0000, /* R93 - OUT4 Mixer Control */
1966 0x0000, /* R94 */
1967 0x0000, /* R95 */
1968 0x0000, /* R96 - Output Left Mixer Volume */
1969 0x0000, /* R97 - Output Right Mixer Volume */
1970 0x0000, /* R98 - Input Mixer Volume L */
1971 0x0000, /* R99 - Input Mixer Volume R */
1972 0x0000, /* R100 - Input Mixer Volume */
1973 0x0000, /* R101 */
1974 0x0000, /* R102 */
1975 0x0000, /* R103 */
1976 0x00E4, /* R104 - OUT1L Volume */
1977 0x00E4, /* R105 - OUT1R Volume */
1978 0x00E4, /* R106 - OUT2L Volume */
1979 0x02E4, /* R107 - OUT2R Volume */
1980 0x0000, /* R108 */
1981 0x0000, /* R109 */
1982 0x0000, /* R110 */
1983 0x0000, /* R111 - BEEP Volume */
1984 0x0A00, /* R112 - AI Formating */
1985 0x0000, /* R113 - ADC DAC COMP */
1986 0x0020, /* R114 - AI ADC Control */
1987 0x0020, /* R115 - AI DAC Control */
1988 0x0000, /* R116 */
1989 0x0000, /* R117 */
1990 0x0000, /* R118 */
1991 0x0000, /* R119 */
1992 0x0000, /* R120 */
1993 0x0000, /* R121 */
1994 0x0000, /* R122 */
1995 0x0000, /* R123 */
1996 0x0000, /* R124 */
1997 0x0000, /* R125 */
1998 0x0000, /* R126 */
1999 0x0000, /* R127 */
2000 0x1FFF, /* R128 - GPIO Debounce */
2001 0x0010, /* R129 - GPIO Pin pull up Control */
2002 0x0000, /* R130 - GPIO Pull down Control */
2003 0x0000, /* R131 - GPIO Interrupt Mode */
2004 0x0000, /* R132 */
2005 0x0000, /* R133 - GPIO Control */
2006 0x0BFB, /* R134 - GPIO Configuration (i/o) */
2007 0x0FFD, /* R135 - GPIO Pin Polarity / Type */
2008 0x0000, /* R136 */
2009 0x0000, /* R137 */
2010 0x0000, /* R138 */
2011 0x0000, /* R139 */
2012 0x0310, /* R140 - GPIO Function Select 1 */
2013 0x0001, /* R141 - GPIO Function Select 2 */
2014 0x2300, /* R142 - GPIO Function Select 3 */
2015 0x0003, /* R143 - GPIO Function Select 4 */
2016 0x0000, /* R144 - Digitiser Control (1) */
2017 0x0002, /* R145 - Digitiser Control (2) */
2018 0x0000, /* R146 */
2019 0x0000, /* R147 */
2020 0x0000, /* R148 */
2021 0x0000, /* R149 */
2022 0x0000, /* R150 */
2023 0x0000, /* R151 */
2024 0x7000, /* R152 - AUX1 Readback */
2025 0x7000, /* R153 - AUX2 Readback */
2026 0x7000, /* R154 - AUX3 Readback */
2027 0x7000, /* R155 - AUX4 Readback */
2028 0x0000, /* R156 - USB Voltage Readback */
2029 0x0000, /* R157 - LINE Voltage Readback */
2030 0x0000, /* R158 - BATT Voltage Readback */
2031 0x0000, /* R159 - Chip Temp Readback */
2032 0x0000, /* R160 */
2033 0x0000, /* R161 */
2034 0x0000, /* R162 */
2035 0x0000, /* R163 - Generic Comparator Control */
2036 0x0000, /* R164 - Generic comparator 1 */
2037 0x0000, /* R165 - Generic comparator 2 */
2038 0x0000, /* R166 - Generic comparator 3 */
2039 0x0000, /* R167 - Generic comparator 4 */
2040 0xA00F, /* R168 - Battery Charger Control 1 */
2041 0x0B06, /* R169 - Battery Charger Control 2 */
2042 0x0000, /* R170 - Battery Charger Control 3 */
2043 0x0000, /* R171 */
2044 0x0000, /* R172 - Current Sink Driver A */
2045 0x0000, /* R173 - CSA Flash control */
2046 0x0000, /* R174 - Current Sink Driver B */
2047 0x0000, /* R175 - CSB Flash control */
2048 0x0000, /* R176 - DCDC/LDO requested */
2049 0x032D, /* R177 - DCDC Active options */
2050 0x0000, /* R178 - DCDC Sleep options */
2051 0x0025, /* R179 - Power-check comparator */
2052 0x0006, /* R180 - DCDC1 Control */
2053 0x0400, /* R181 - DCDC1 Timeouts */
2054 0x1006, /* R182 - DCDC1 Low Power */
2055 0x0018, /* R183 - DCDC2 Control */
2056 0x0000, /* R184 - DCDC2 Timeouts */
2057 0x0000, /* R185 */
2058 0x0050, /* R186 - DCDC3 Control */
2059 0x0C00, /* R187 - DCDC3 Timeouts */
2060 0x0006, /* R188 - DCDC3 Low Power */
2061 0x000E, /* R189 - DCDC4 Control */
2062 0x0400, /* R190 - DCDC4 Timeouts */
2063 0x0006, /* R191 - DCDC4 Low Power */
2064 0x0008, /* R192 - DCDC5 Control */
2065 0x0000, /* R193 - DCDC5 Timeouts */
2066 0x0000, /* R194 */
2067 0x0029, /* R195 - DCDC6 Control */
2068 0x0800, /* R196 - DCDC6 Timeouts */
2069 0x0006, /* R197 - DCDC6 Low Power */
2070 0x0000, /* R198 */
2071 0x0003, /* R199 - Limit Switch Control */
2072 0x001D, /* R200 - LDO1 Control */
2073 0x1000, /* R201 - LDO1 Timeouts */
2074 0x001C, /* R202 - LDO1 Low Power */
2075 0x0017, /* R203 - LDO2 Control */
2076 0x1000, /* R204 - LDO2 Timeouts */
2077 0x001C, /* R205 - LDO2 Low Power */
2078 0x0006, /* R206 - LDO3 Control */
2079 0x1000, /* R207 - LDO3 Timeouts */
2080 0x001C, /* R208 - LDO3 Low Power */
2081 0x0010, /* R209 - LDO4 Control */
2082 0x1000, /* R210 - LDO4 Timeouts */
2083 0x001C, /* R211 - LDO4 Low Power */
2084 0x0000, /* R212 */
2085 0x0000, /* R213 */
2086 0x0000, /* R214 */
2087 0x0000, /* R215 - VCC_FAULT Masks */
2088 0x001F, /* R216 - Main Bandgap Control */
2089 0x0000, /* R217 - OSC Control */
2090 0x9000, /* R218 - RTC Tick Control */
2091 0x0000, /* R219 - Security1 */
2092 0x4000, /* R220 */
2093 0x0000, /* R221 */
2094 0x0000, /* R222 */
2095 0x0000, /* R223 */
2096 0x0000, /* R224 - Signal overrides */
2097 0x0000, /* R225 - DCDC/LDO status */
2098 0x0000, /* R226 - Charger Overides/status */
2099 0x0000, /* R227 - misc overrides */
2100 0x0000, /* R228 - Supply overrides/status 1 */
2101 0x0000, /* R229 - Supply overrides/status 2 */
2102 0xE000, /* R230 - GPIO Pin Status */
2103 0x0000, /* R231 - comparotor overrides */
2104 0x0000, /* R232 */
2105 0x0000, /* R233 - State Machine status */
2106 0x1200, /* R234 */
2107 0x0000, /* R235 */
2108 0x8000, /* R236 */
2109 0x0000, /* R237 */
2110 0x0000, /* R238 */
2111 0x0000, /* R239 */
2112 0x0003, /* R240 */
2113 0x0000, /* R241 */
2114 0x0000, /* R242 */
2115 0x0004, /* R243 */
2116 0x0300, /* R244 */
2117 0x0000, /* R245 */
2118 0x0200, /* R246 */
2119 0x0000, /* R247 */
2120 0x1000, /* R248 - DCDC1 Test Controls */
2121 0x5000, /* R249 */
2122 0x1000, /* R250 - DCDC3 Test Controls */
2123 0x1000, /* R251 - DCDC4 Test Controls */
2124 0x5100, /* R252 */
2125 0x1000, /* R253 - DCDC6 Test Controls */
2126};
2127#endif
2128
1077/* The register defaults for the config mode used must be compiled in but 2129/* The register defaults for the config mode used must be compiled in but
1078 * due to the impact on kernel size it is possible to disable 2130 * due to the impact on kernel size it is possible to disable
1079 */ 2131 */