2 * Copyright 2008 Extreme Engineering Solutions, Inc.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * Driver for NXP's 4, 8 and 16 bit I2C gpio expanders (eg pca9537, pca9557,
28 /* Default to an address that hopefully won't corrupt other i2c devices */
29 #ifndef CONFIG_SYS_I2C_PCA953X_ADDR
30 #define CONFIG_SYS_I2C_PCA953X_ADDR (~0)
41 #ifdef CONFIG_SYS_I2C_PCA953X_WIDTH
42 struct pca953x_chip_ngpio {
47 static struct pca953x_chip_ngpio pca953x_chip_ngpios[] =
48 CONFIG_SYS_I2C_PCA953X_WIDTH;
50 #define NUM_CHIP_GPIOS (sizeof(pca953x_chip_ngpios) / \
51 sizeof(struct pca953x_chip_ngpio))
54 * Determine the number of GPIO pins supported. If we don't know we assume
57 static int pca953x_ngpio(uint8_t chip)
61 for (i = 0; i < NUM_CHIP_GPIOS; i++)
62 if (pca953x_chip_ngpios[i].chip == chip)
63 return pca953x_chip_ngpios[i].ngpio;
68 static int pca953x_ngpio(uint8_t chip)
75 * Modify masked bits in register
77 static int pca953x_reg_write(uint8_t chip, uint addr, uint mask, uint data)
82 if (pca953x_ngpio(chip) <= 8) {
83 if (i2c_read(chip, addr, 1, &valb, 1))
89 return i2c_write(chip, addr, 1, &valb, 1);
91 if (i2c_read(chip, addr << 1, 1, (u8*)&valw, 2))
97 return i2c_write(chip, addr << 1, 1, (u8*)&valw, 2);
101 static int pca953x_reg_read(uint8_t chip, uint addr, uint *data)
106 if (pca953x_ngpio(chip) <= 8) {
107 if (i2c_read(chip, addr, 1, &valb, 1))
111 if (i2c_read(chip, addr << 1, 1, (u8*)&valw, 2))
119 * Set output value of IO pins in 'mask' to corresponding value in 'data'
122 int pca953x_set_val(uint8_t chip, uint mask, uint data)
124 return pca953x_reg_write(chip, PCA953X_OUT, mask, data);
128 * Set read polarity of IO pins in 'mask' to corresponding value in 'data'
129 * 0 = read pin value, 1 = read inverted pin value
131 int pca953x_set_pol(uint8_t chip, uint mask, uint data)
133 return pca953x_reg_write(chip, PCA953X_POL, mask, data);
137 * Set direction of IO pins in 'mask' to corresponding value in 'data'
138 * 0 = output, 1 = input
140 int pca953x_set_dir(uint8_t chip, uint mask, uint data)
142 return pca953x_reg_write(chip, PCA953X_CONF, mask, data);
146 * Read current logic level of all IO pins
148 int pca953x_get_val(uint8_t chip)
152 if (pca953x_reg_read(chip, PCA953X_IN, &val) < 0)
158 #ifdef CONFIG_CMD_PCA953X
159 #ifdef CONFIG_CMD_PCA953X_INFO
161 * Display pca953x information
163 static int pca953x_info(uint8_t chip)
167 int nr_gpio = pca953x_ngpio(chip);
168 int msb = nr_gpio - 1;
170 printf("pca953x@ 0x%x (%d pins):\n\n", chip, nr_gpio);
171 printf("gpio pins: ");
172 for (i = msb; i >= 0; i--)
175 for (i = 11 + nr_gpio; i > 0; i--)
179 if (pca953x_reg_read(chip, PCA953X_CONF, &data) < 0)
182 for (i = msb; i >= 0; i--)
183 printf("%c", data & (1 << i) ? 'i' : 'o');
186 if (pca953x_reg_read(chip, PCA953X_POL, &data) < 0)
189 for (i = msb; i >= 0; i--)
190 printf("%c", data & (1 << i) ? '1' : '0');
193 if (pca953x_reg_read(chip, PCA953X_IN, &data) < 0)
196 for (i = msb; i >= 0; i--)
197 printf("%c", data & (1 << i) ? '1' : '0');
200 if (pca953x_reg_read(chip, PCA953X_OUT, &data) < 0)
203 for (i = msb; i >= 0; i--)
204 printf("%c", data & (1 << i) ? '1' : '0');
209 #endif /* CONFIG_CMD_PCA953X_INFO */
211 cmd_tbl_t cmd_pca953x[] = {
212 U_BOOT_CMD_MKENT(device, 3, 0, (void *)PCA953X_CMD_DEVICE, "", ""),
213 U_BOOT_CMD_MKENT(output, 4, 0, (void *)PCA953X_CMD_OUTPUT, "", ""),
214 U_BOOT_CMD_MKENT(input, 3, 0, (void *)PCA953X_CMD_INPUT, "", ""),
215 U_BOOT_CMD_MKENT(invert, 4, 0, (void *)PCA953X_CMD_INVERT, "", ""),
216 #ifdef CONFIG_CMD_PCA953X_INFO
217 U_BOOT_CMD_MKENT(info, 2, 0, (void *)PCA953X_CMD_INFO, "", ""),
221 int do_pca953x(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
223 static uint8_t chip = CONFIG_SYS_I2C_PCA953X_ADDR;
229 c = find_cmd_tbl(argv[1], cmd_pca953x, ARRAY_SIZE(cmd_pca953x));
231 /* All commands but "device" require 'maxargs' arguments */
232 if (!c || !((argc == (c->maxargs)) ||
233 (((int)c->cmd == PCA953X_CMD_DEVICE) &&
234 (argc == (c->maxargs - 1))))) {
235 return cmd_usage(cmdtp);
238 /* arg2 used as chip number or pin number */
240 ul_arg2 = simple_strtoul(argv[2], NULL, 16);
242 /* arg3 used as pin or invert value */
244 ul_arg3 = simple_strtoul(argv[3], NULL, 16) & 0x1;
246 switch ((int)c->cmd) {
247 #ifdef CONFIG_CMD_PCA953X_INFO
248 case PCA953X_CMD_INFO:
249 return pca953x_info(chip);
251 case PCA953X_CMD_DEVICE:
253 chip = (uint8_t)ul_arg2;
254 printf("Current device address: 0x%x\n", chip);
256 case PCA953X_CMD_INPUT:
257 pca953x_set_dir(chip, (1 << ul_arg2),
258 PCA953X_DIR_IN << ul_arg2);
259 val = (pca953x_get_val(chip) & (1 << ul_arg2)) != 0;
261 printf("chip 0x%02x, pin 0x%lx = %d\n", chip, ul_arg2, val);
263 case PCA953X_CMD_OUTPUT:
264 pca953x_set_dir(chip, (1 << ul_arg2),
265 (PCA953X_DIR_OUT << ul_arg2));
266 return pca953x_set_val(chip, (1 << ul_arg2),
267 (ul_arg3 << ul_arg2));
268 case PCA953X_CMD_INVERT:
269 return pca953x_set_pol(chip, (1 << ul_arg2),
270 (ul_arg3 << ul_arg2));
272 /* We should never get here */
278 pca953x, 5, 1, do_pca953x,
279 "pca953x gpio access",
281 " - show or set current device address\n"
282 #ifdef CONFIG_CMD_PCA953X_INFO
284 " - display info for current chip\n"
286 "pca953x output pin 0|1\n"
287 " - set pin as output and drive low or high\n"
288 "pca953x invert pin 0|1\n"
289 " - disable/enable polarity inversion for reads\n"
290 "pca953x intput pin\n"
291 " - set pin as input and read value"
294 #endif /* CONFIG_CMD_PCA953X */