1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* IR357x driver.
*/
#include "board.h"
#include "console.h"
#include "hooks.h"
#include "i2c.h"
#include "timer.h"
#include "uart.h"
#include "util.h"
/* 8-bit I2C address */
#define IR357x_I2C_ADDR (0x8 << 1)
/* the current settings are for IR3571 */
#define IR357x_SUPPORTED_CHIP 3571
static uint8_t ir357x_settings[][2] = {
{0x18, 0x22}, {0x19, 0x22}, {0x1a, 0x08}, {0x1b, 0x10},
{0x1c, 0x06}, {0x1d, 0x21}, {0x1e, 0x21}, {0x1f, 0x83},
{0x20, 0x83}, {0x21, 0x00}, {0x22, 0x00}, {0x23, 0x00},
{0x24, 0x00}, {0x25, 0x00}, {0x26, 0x00}, {0x27, 0x34},
{0x28, 0x34}, {0x29, 0x74}, {0x2a, 0x4e}, {0x2b, 0xff},
{0x2c, 0x00}, {0x2d, 0x1e}, {0x2e, 0x19}, {0x2f, 0x60},
{0x30, 0x9a}, {0x31, 0x9a}, {0x32, 0x25}, {0x33, 0x19},
{0x34, 0xe9}, {0x35, 0x40}, {0x36, 0x90}, {0x37, 0x6d},
{0x38, 0x75}, {0x39, 0x48}, {0x3a, 0x24}, {0x3b, 0x08},
{0x3c, 0xc5}, {0x3d, 0xa0}, {0x3e, 0x80}, {0x3f, 0xaa},
{0x40, 0x50}, {0x41, 0x4b}, {0x42, 0x02}, {0x43, 0x04},
{0x44, 0x00}, {0x45, 0x00}, {0x46, 0x00}, {0x47, 0x78},
{0x48, 0x54}, {0x49, 0x22}, {0x4a, 0x6a}, {0x4b, 0x00},
{0x4c, 0x80}, {0x4d, 0x60}, {0x4e, 0x60}, {0x4f, 0xff},
{0x50, 0xff}, {0x51, 0x00}, {0x52, 0x4b}, {0x53, 0xaa},
{0x54, 0xd8}, {0x55, 0x46}, {0x56, 0x31}, {0x57, 0x1a},
{0x58, 0x12}, {0x59, 0x63}, {0x5a, 0x40}, {0x5b, 0x09},
{0x5c, 0x02}, {0x5d, 0x00}, {0x5e, 0xea}, {0x5f, 0x00},
{0x60, 0xb0}, {0x61, 0x14}, {0x62, 0x00}, {0x63, 0x66},
{0x64, 0x00}, {0x65, 0x00}, {0x66, 0x00}, {0x67, 0x00},
{0x68, 0x14}, {0x69, 0x00}, {0x6a, 0x00}, {0x6b, 0x00},
{0x6c, 0x00}, {0x6d, 0x00}, {0x6e, 0x00}, {0x6f, 0x00},
{0x70, 0x80}, {0x71, 0x00}, {0x72, 0x00}, {0x73, 0x00},
{0x74, 0x00}, {0x75, 0xff}, {0x76, 0x06}, {0x77, 0xfb},
{0x78, 0xfb}, {0x79, 0x04}, {0x7a, 0x00}, {0x7b, 0x0c},
{0x7c, 0xa0}, {0x7d, 0x10}, {0x7e, 0x00}, {0x7f, 0x8a},
{0x80, 0x1b}, {0x81, 0x11}, {0x82, 0x00}, {0x83, 0x00},
{0x84, 0x00}, {0x85, 0x00}, {0x86, 0x00}, {0x87, 0x00},
{0x88, 0x00}, {0x89, 0x00}, {0x8a, 0x00}, {0x8b, 0x00},
{0x8c, 0x00}, {0x8d, 0x00}, {0x8e, 0x00}, {0x8f, 0x00},
};
static uint8_t ir357x_read(uint8_t reg)
{
int res;
int val;
res = i2c_read8(I2C_PORT_REGULATOR, IR357x_I2C_ADDR, reg, &val);
if (res)
return 0xee;
return val;
}
static void ir357x_write(uint8_t reg, uint8_t val)
{
int res;
res = i2c_write8(I2C_PORT_REGULATOR, IR357x_I2C_ADDR, reg, val);
if (res)
ccprintf("I2C write failed\n");
}
int ir357x_get_version(void)
{
/* IR3571 on Link EVT+ */
if ((ir357x_read(0xfc) == 'I') && (ir357x_read(0xfd) == 'R') &&
((ir357x_read(0x0a) & 0xe) == 0))
return 3571;
/* IR3570A on Link Proto 0/1 */
if ((ir357x_read(0x92) == 'C') && (ir357x_read(0xcd) == 0x24))
return 3570;
/* Unknown and unsupported chip */
return -1;
}
void ir357x_prog(void)
{
int i;
int version = ir357x_get_version();
if (version != IR357x_SUPPORTED_CHIP) {
ccprintf("Unsupported chip IR %d. Skip writing settings !\n",
version);
return;
}
for (i = 0; i < ARRAY_SIZE(ir357x_settings); i++)
ir357x_write(ir357x_settings[i][0], ir357x_settings[i][1]);
ccprintf("IR%d registers UPDATED.\n", version);
}
void ir357x_dump(void)
{
int i;
for (i = 0; i < 256; i++) {
if (!(i & 0xf)) {
ccprintf("\n%02x: ", i);
cflush();
}
ccprintf("%02x ", ir357x_read(i));
}
ccprintf("\n");
}
int ir357x_check(void)
{
int i;
uint8_t val;
int diff = 0;
for (i = 0; i < ARRAY_SIZE(ir357x_settings); i++)
val = ir357x_read(ir357x_settings[i][0]);
if (val != ir357x_settings[i][1]) {
ccprintf("DIFF reg 0x%02x %02x->%02x\n",
ir357x_settings[i][0],
ir357x_settings[i][1], val);
cflush();
diff++;
}
return !!diff;
}
static int command_ir357x(int argc, char **argv)
{
int reg, val;
char *rem;
if (1 == argc) { /* dump all registers */
ir357x_dump();
return EC_SUCCESS;
} else if (2 == argc) {
if (!strcasecmp(argv[1], "check")) {
ir357x_check();
} else { /* read one register */
reg = strtoi(argv[1], &rem, 16);
if (*rem) {
ccprintf("Invalid register: %s\n", argv[1]);
return EC_ERROR_INVAL;
}
ccprintf("reg 0x%02x = 0x%02x\n", reg,
ir357x_read(reg));
}
return EC_SUCCESS;
} else if (3 == argc) { /* write one register */
reg = strtoi(argv[1], &rem, 16);
if (*rem) {
ccprintf("Invalid register: %s\n", argv[1]);
return EC_ERROR_INVAL;
}
val = strtoi(argv[2], &rem, 16);
if (*rem) {
ccprintf("Invalid value: %s\n", argv[2]);
return EC_ERROR_INVAL;
}
ir357x_write(reg, val);
return EC_SUCCESS;
}
return EC_ERROR_INVAL;
}
DECLARE_CONSOLE_COMMAND(ir357x, command_ir357x,
"[check|write]",
"IR357x core regulator control",
NULL);
static int ir357x_hot_settings(void)
{
/* dynamically apply settings to workaround issue */
ir357x_prog();
return EC_SUCCESS;
}
DECLARE_HOOK(HOOK_CHIPSET_RESUME, ir357x_hot_settings, HOOK_PRIO_DEFAULT);
|