1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * dm355evm_msp.c - driver for MSP430 firmware on DM355EVM board
5 * Copyright (C) 2008 David Brownell
8 #include <linux/init.h>
9 #include <linux/mutex.h>
10 #include <linux/platform_device.h>
11 #include <linux/clk.h>
12 #include <linux/module.h>
13 #include <linux/err.h>
14 #include <linux/gpio.h>
15 #include <linux/leds.h>
16 #include <linux/i2c.h>
17 #include <linux/mfd/dm355evm_msp.h>
21 * The DM355 is a DaVinci chip with video support but no C64+ DSP. Its
22 * EVM board has an MSP430 programmed with firmware for various board
23 * support functions. This driver exposes some of them directly, and
24 * supports other drivers (e.g. RTC, input) for more complex access.
26 * Because this firmware is entirely board-specific, this file embeds
27 * knowledge that would be passed as platform_data in a generic driver.
29 * This driver was tested with firmware revision A4.
32 #if IS_ENABLED(CONFIG_INPUT_DM355EVM)
33 #define msp_has_keyboard() true
35 #define msp_has_keyboard() false
38 #if IS_ENABLED(CONFIG_LEDS_GPIO)
39 #define msp_has_leds() true
41 #define msp_has_leds() false
44 #if IS_ENABLED(CONFIG_RTC_DRV_DM355EVM)
45 #define msp_has_rtc() true
47 #define msp_has_rtc() false
50 #if IS_ENABLED(CONFIG_VIDEO_TVP514X)
51 #define msp_has_tvp() true
53 #define msp_has_tvp() false
57 /*----------------------------------------------------------------------*/
59 /* REVISIT for paranoia's sake, retry reads/writes on error */
61 static struct i2c_client
*msp430
;
64 * dm355evm_msp_write - Writes a register in dm355evm_msp
65 * @value: the value to be written
66 * @reg: register address
68 * Returns result of operation - 0 is success, else negative errno
70 int dm355evm_msp_write(u8 value
, u8 reg
)
72 return i2c_smbus_write_byte_data(msp430
, reg
, value
);
74 EXPORT_SYMBOL(dm355evm_msp_write
);
77 * dm355evm_msp_read - Reads a register from dm355evm_msp
78 * @reg: register address
80 * Returns result of operation - value, or negative errno
82 int dm355evm_msp_read(u8 reg
)
84 return i2c_smbus_read_byte_data(msp430
, reg
);
86 EXPORT_SYMBOL(dm355evm_msp_read
);
88 /*----------------------------------------------------------------------*/
91 * Many of the msp430 pins are just used as fixed-direction GPIOs.
92 * We could export a few more of them this way, if we wanted.
94 #define MSP_GPIO(bit, reg) ((DM355EVM_MSP_ ## reg) << 3 | (bit))
96 static const u8 msp_gpios
[] = {
98 MSP_GPIO(0, LED
), MSP_GPIO(1, LED
),
99 MSP_GPIO(2, LED
), MSP_GPIO(3, LED
),
100 MSP_GPIO(4, LED
), MSP_GPIO(5, LED
),
101 MSP_GPIO(6, LED
), MSP_GPIO(7, LED
),
102 /* SW6 and the NTSC/nPAL jumper */
103 MSP_GPIO(0, SWITCH1
), MSP_GPIO(1, SWITCH1
),
104 MSP_GPIO(2, SWITCH1
), MSP_GPIO(3, SWITCH1
),
105 MSP_GPIO(4, SWITCH1
),
106 /* switches on MMC/SD sockets */
108 * Note: EVMDM355_ECP_VA4.pdf suggests that Bit 2 and 4 should be
109 * checked for card detection. However on the EVM bit 1 and 3 gives
110 * this status, for 0 and 1 instance respectively. The pdf also
111 * suggests that Bit 1 and 3 should be checked for write protection.
112 * However on the EVM bit 2 and 4 gives this status,for 0 and 1
113 * instance respectively.
115 MSP_GPIO(2, SDMMC
), MSP_GPIO(1, SDMMC
), /* mmc0 WP, nCD */
116 MSP_GPIO(4, SDMMC
), MSP_GPIO(3, SDMMC
), /* mmc1 WP, nCD */
119 #define MSP_GPIO_REG(offset) (msp_gpios[(offset)] >> 3)
120 #define MSP_GPIO_MASK(offset) BIT(msp_gpios[(offset)] & 0x07)
122 static int msp_gpio_in(struct gpio_chip
*chip
, unsigned offset
)
124 switch (MSP_GPIO_REG(offset
)) {
125 case DM355EVM_MSP_SWITCH1
:
126 case DM355EVM_MSP_SWITCH2
:
127 case DM355EVM_MSP_SDMMC
:
134 static u8 msp_led_cache
;
136 static int msp_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
140 reg
= MSP_GPIO_REG(offset
);
141 status
= dm355evm_msp_read(reg
);
144 if (reg
== DM355EVM_MSP_LED
)
145 msp_led_cache
= status
;
146 return !!(status
& MSP_GPIO_MASK(offset
));
149 static int msp_gpio_out(struct gpio_chip
*chip
, unsigned offset
, int value
)
153 /* NOTE: there are some other signals that could be
154 * packaged as output GPIOs, but they aren't as useful
155 * as the LEDs ... so for now we don't.
157 if (MSP_GPIO_REG(offset
) != DM355EVM_MSP_LED
)
160 mask
= MSP_GPIO_MASK(offset
);
161 bits
= msp_led_cache
;
166 msp_led_cache
= bits
;
168 return dm355evm_msp_write(bits
, DM355EVM_MSP_LED
);
171 static void msp_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
173 msp_gpio_out(chip
, offset
, value
);
176 static struct gpio_chip dm355evm_msp_gpio
= {
177 .label
= "dm355evm_msp",
178 .owner
= THIS_MODULE
,
179 .direction_input
= msp_gpio_in
,
181 .direction_output
= msp_gpio_out
,
183 .base
= -EINVAL
, /* dynamic assignment */
184 .ngpio
= ARRAY_SIZE(msp_gpios
),
188 /*----------------------------------------------------------------------*/
190 static struct device
*add_child(struct i2c_client
*client
, const char *name
,
191 void *pdata
, unsigned pdata_len
,
192 bool can_wakeup
, int irq
)
194 struct platform_device
*pdev
;
197 pdev
= platform_device_alloc(name
, -1);
199 return ERR_PTR(-ENOMEM
);
201 device_init_wakeup(&pdev
->dev
, can_wakeup
);
202 pdev
->dev
.parent
= &client
->dev
;
205 status
= platform_device_add_data(pdev
, pdata
, pdata_len
);
207 dev_dbg(&pdev
->dev
, "can't add platform_data\n");
213 struct resource r
= {
215 .flags
= IORESOURCE_IRQ
,
218 status
= platform_device_add_resources(pdev
, &r
, 1);
220 dev_dbg(&pdev
->dev
, "can't add irq\n");
225 status
= platform_device_add(pdev
);
232 platform_device_put(pdev
);
233 dev_err(&client
->dev
, "failed to add device %s\n", name
);
234 return ERR_PTR(status
);
237 static int add_children(struct i2c_client
*client
)
239 static const struct {
242 } config_inputs
[] = {
243 /* 8 == right after the LEDs */
248 { 8 + 4, "NTSC/nPAL", },
251 struct device
*child
;
256 dm355evm_msp_gpio
.parent
= &client
->dev
;
257 status
= gpiochip_add_data(&dm355evm_msp_gpio
, NULL
);
262 if (msp_has_leds()) {
263 #define GPIO_LED(l) .name = l, .active_low = true
264 static struct gpio_led evm_leds
[] = {
265 { GPIO_LED("dm355evm::ds14"),
266 .default_trigger
= "heartbeat", },
267 { GPIO_LED("dm355evm::ds15"),
268 .default_trigger
= "mmc0", },
269 { GPIO_LED("dm355evm::ds16"),
270 /* could also be a CE-ATA drive */
271 .default_trigger
= "mmc1", },
272 { GPIO_LED("dm355evm::ds17"),
273 .default_trigger
= "nand-disk", },
274 { GPIO_LED("dm355evm::ds18"), },
275 { GPIO_LED("dm355evm::ds19"), },
276 { GPIO_LED("dm355evm::ds20"), },
277 { GPIO_LED("dm355evm::ds21"), },
281 struct gpio_led_platform_data evm_led_data
= {
282 .num_leds
= ARRAY_SIZE(evm_leds
),
286 for (i
= 0; i
< ARRAY_SIZE(evm_leds
); i
++)
287 evm_leds
[i
].gpio
= i
+ dm355evm_msp_gpio
.base
;
289 /* NOTE: these are the only fully programmable LEDs
290 * on the board, since GPIO-61/ds22 (and many signals
291 * going to DC7) must be used for AEMIF address lines
292 * unless the top 1 GB of NAND is unused...
294 child
= add_child(client
, "leds-gpio",
295 &evm_led_data
, sizeof(evm_led_data
),
298 return PTR_ERR(child
);
301 /* configuration inputs */
302 for (i
= 0; i
< ARRAY_SIZE(config_inputs
); i
++) {
303 int gpio
= dm355evm_msp_gpio
.base
+ config_inputs
[i
].offset
;
305 gpio_request_one(gpio
, GPIOF_IN
, config_inputs
[i
].label
);
307 /* make it easy for userspace to see these */
308 gpio_export(gpio
, false);
311 /* MMC/SD inputs -- right after the last config input */
312 if (dev_get_platdata(&client
->dev
)) {
313 void (*mmcsd_setup
)(unsigned) = dev_get_platdata(&client
->dev
);
315 mmcsd_setup(dm355evm_msp_gpio
.base
+ 8 + 5);
318 /* RTC is a 32 bit counter, no alarm */
320 child
= add_child(client
, "rtc-dm355evm",
323 return PTR_ERR(child
);
326 /* input from buttons and IR remote (uses the IRQ) */
327 if (msp_has_keyboard()) {
328 child
= add_child(client
, "dm355evm_keys",
329 NULL
, 0, true, client
->irq
);
331 return PTR_ERR(child
);
337 /*----------------------------------------------------------------------*/
339 static void dm355evm_command(unsigned command
)
343 status
= dm355evm_msp_write(command
, DM355EVM_MSP_COMMAND
);
345 dev_err(&msp430
->dev
, "command %d failure %d\n",
349 static void dm355evm_power_off(void)
351 dm355evm_command(MSP_COMMAND_POWEROFF
);
354 static int dm355evm_msp_remove(struct i2c_client
*client
)
362 dm355evm_msp_probe(struct i2c_client
*client
, const struct i2c_device_id
*id
)
365 const char *video
= msp_has_tvp() ? "TVP5146" : "imager";
371 /* display revision status; doubles as sanity check */
372 status
= dm355evm_msp_read(DM355EVM_MSP_FIRMREV
);
375 dev_info(&client
->dev
, "firmware v.%02X, %s as video-in\n",
378 /* mux video input: either tvp5146 or some external imager */
379 status
= dm355evm_msp_write(msp_has_tvp() ? 0 : MSP_VIDEO_IMAGER
,
380 DM355EVM_MSP_VIDEO_IN
);
382 dev_warn(&client
->dev
, "error %d muxing %s as video-in\n",
385 /* init LED cache, and turn off the LEDs */
386 msp_led_cache
= 0xff;
387 dm355evm_msp_write(msp_led_cache
, DM355EVM_MSP_LED
);
389 /* export capabilities we support */
390 status
= add_children(client
);
395 pm_power_off
= dm355evm_power_off
;
400 /* FIXME remove children ... */
401 dm355evm_msp_remove(client
);
405 static const struct i2c_device_id dm355evm_msp_ids
[] = {
406 { "dm355evm_msp", 0 },
407 { /* end of list */ },
409 MODULE_DEVICE_TABLE(i2c
, dm355evm_msp_ids
);
411 static struct i2c_driver dm355evm_msp_driver
= {
412 .driver
.name
= "dm355evm_msp",
413 .id_table
= dm355evm_msp_ids
,
414 .probe
= dm355evm_msp_probe
,
415 .remove
= dm355evm_msp_remove
,
418 static int __init
dm355evm_msp_init(void)
420 return i2c_add_driver(&dm355evm_msp_driver
);
422 subsys_initcall(dm355evm_msp_init
);
424 static void __exit
dm355evm_msp_exit(void)
426 i2c_del_driver(&dm355evm_msp_driver
);
428 module_exit(dm355evm_msp_exit
);
430 MODULE_DESCRIPTION("Interface to MSP430 firmware on DM355EVM");
431 MODULE_LICENSE("GPL");