blob: 1b345be5cc02d184928a6efda53a2639741261c6 [file] [log] [blame]
David S. Miller237f8aa2008-08-27 18:39:47 -07001/* uctrl.c: TS102 Microcontroller interface on Tadpole Sparcbook 3
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright 1999 Derrick J Brashear (shadow@dementia.org)
David S. Miller237f8aa2008-08-27 18:39:47 -07004 * Copyright 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/errno.h>
9#include <linux/delay.h>
10#include <linux/interrupt.h>
11#include <linux/slab.h>
Arnd Bergmanna3108ca2010-07-20 23:36:39 -070012#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/ioport.h>
14#include <linux/init.h>
15#include <linux/miscdevice.h>
16#include <linux/mm.h>
David S. Miller237f8aa2008-08-27 18:39:47 -070017#include <linux/of.h>
18#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/openprom.h>
21#include <asm/oplib.h>
22#include <asm/system.h>
23#include <asm/irq.h>
24#include <asm/io.h>
25#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#define UCTRL_MINOR 174
28
29#define DEBUG 1
30#ifdef DEBUG
31#define dprintk(x) printk x
32#else
33#define dprintk(x)
34#endif
35
36struct uctrl_regs {
David S. Miller237f8aa2008-08-27 18:39:47 -070037 u32 uctrl_intr;
38 u32 uctrl_data;
39 u32 uctrl_stat;
40 u32 uctrl_xxx[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
43struct ts102_regs {
David S. Miller237f8aa2008-08-27 18:39:47 -070044 u32 card_a_intr;
45 u32 card_a_stat;
46 u32 card_a_ctrl;
47 u32 card_a_xxx;
48 u32 card_b_intr;
49 u32 card_b_stat;
50 u32 card_b_ctrl;
51 u32 card_b_xxx;
52 u32 uctrl_intr;
53 u32 uctrl_data;
54 u32 uctrl_stat;
55 u32 uctrl_xxx;
56 u32 ts102_xxx[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
59/* Bits for uctrl_intr register */
60#define UCTRL_INTR_TXE_REQ 0x01 /* transmit FIFO empty int req */
61#define UCTRL_INTR_TXNF_REQ 0x02 /* transmit FIFO not full int req */
62#define UCTRL_INTR_RXNE_REQ 0x04 /* receive FIFO not empty int req */
63#define UCTRL_INTR_RXO_REQ 0x08 /* receive FIFO overflow int req */
64#define UCTRL_INTR_TXE_MSK 0x10 /* transmit FIFO empty mask */
65#define UCTRL_INTR_TXNF_MSK 0x20 /* transmit FIFO not full mask */
66#define UCTRL_INTR_RXNE_MSK 0x40 /* receive FIFO not empty mask */
67#define UCTRL_INTR_RXO_MSK 0x80 /* receive FIFO overflow mask */
68
69/* Bits for uctrl_stat register */
70#define UCTRL_STAT_TXE_STA 0x01 /* transmit FIFO empty status */
71#define UCTRL_STAT_TXNF_STA 0x02 /* transmit FIFO not full status */
72#define UCTRL_STAT_RXNE_STA 0x04 /* receive FIFO not empty status */
73#define UCTRL_STAT_RXO_STA 0x08 /* receive FIFO overflow status */
74
Arnd Bergmanna3108ca2010-07-20 23:36:39 -070075static DEFINE_MUTEX(uctrl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static const char *uctrl_extstatus[16] = {
77 "main power available",
78 "internal battery attached",
79 "external battery attached",
80 "external VGA attached",
81 "external keyboard attached",
82 "external mouse attached",
83 "lid down",
84 "internal battery currently charging",
85 "external battery currently charging",
86 "internal battery currently discharging",
87 "external battery currently discharging",
88};
89
90/* Everything required for one transaction with the uctrl */
91struct uctrl_txn {
92 u8 opcode;
93 u8 inbits;
94 u8 outbits;
95 u8 *inbuf;
96 u8 *outbuf;
97};
98
99struct uctrl_status {
100 u8 current_temp; /* 0x07 */
101 u8 reset_status; /* 0x0b */
102 u16 event_status; /* 0x0c */
103 u16 error_status; /* 0x10 */
104 u16 external_status; /* 0x11, 0x1b */
105 u8 internal_charge; /* 0x18 */
106 u8 external_charge; /* 0x19 */
107 u16 control_lcd; /* 0x20 */
108 u8 control_bitport; /* 0x21 */
109 u8 speaker_volume; /* 0x23 */
110 u8 control_tft_brightness; /* 0x24 */
111 u8 control_kbd_repeat_delay; /* 0x28 */
112 u8 control_kbd_repeat_period; /* 0x29 */
113 u8 control_screen_contrast; /* 0x2F */
114};
115
116enum uctrl_opcode {
117 READ_SERIAL_NUMBER=0x1,
118 READ_ETHERNET_ADDRESS=0x2,
119 READ_HARDWARE_VERSION=0x3,
120 READ_MICROCONTROLLER_VERSION=0x4,
121 READ_MAX_TEMPERATURE=0x5,
122 READ_MIN_TEMPERATURE=0x6,
123 READ_CURRENT_TEMPERATURE=0x7,
124 READ_SYSTEM_VARIANT=0x8,
125 READ_POWERON_CYCLES=0x9,
126 READ_POWERON_SECONDS=0xA,
127 READ_RESET_STATUS=0xB,
128 READ_EVENT_STATUS=0xC,
129 READ_REAL_TIME_CLOCK=0xD,
130 READ_EXTERNAL_VGA_PORT=0xE,
131 READ_MICROCONTROLLER_ROM_CHECKSUM=0xF,
132 READ_ERROR_STATUS=0x10,
133 READ_EXTERNAL_STATUS=0x11,
134 READ_USER_CONFIGURATION_AREA=0x12,
135 READ_MICROCONTROLLER_VOLTAGE=0x13,
136 READ_INTERNAL_BATTERY_VOLTAGE=0x14,
137 READ_DCIN_VOLTAGE=0x15,
138 READ_HORIZONTAL_POINTER_VOLTAGE=0x16,
139 READ_VERTICAL_POINTER_VOLTAGE=0x17,
140 READ_INTERNAL_BATTERY_CHARGE_LEVEL=0x18,
141 READ_EXTERNAL_BATTERY_CHARGE_LEVEL=0x19,
142 READ_REAL_TIME_CLOCK_ALARM=0x1A,
143 READ_EVENT_STATUS_NO_RESET=0x1B,
144 READ_INTERNAL_KEYBOARD_LAYOUT=0x1C,
145 READ_EXTERNAL_KEYBOARD_LAYOUT=0x1D,
146 READ_EEPROM_STATUS=0x1E,
147 CONTROL_LCD=0x20,
148 CONTROL_BITPORT=0x21,
149 SPEAKER_VOLUME=0x23,
150 CONTROL_TFT_BRIGHTNESS=0x24,
151 CONTROL_WATCHDOG=0x25,
152 CONTROL_FACTORY_EEPROM_AREA=0x26,
153 CONTROL_KBD_TIME_UNTIL_REPEAT=0x28,
154 CONTROL_KBD_TIME_BETWEEN_REPEATS=0x29,
155 CONTROL_TIMEZONE=0x2A,
156 CONTROL_MARK_SPACE_RATIO=0x2B,
157 CONTROL_DIAGNOSTIC_MODE=0x2E,
158 CONTROL_SCREEN_CONTRAST=0x2F,
159 RING_BELL=0x30,
160 SET_DIAGNOSTIC_STATUS=0x32,
161 CLEAR_KEY_COMBINATION_TABLE=0x33,
162 PERFORM_SOFTWARE_RESET=0x34,
163 SET_REAL_TIME_CLOCK=0x35,
164 RECALIBRATE_POINTING_STICK=0x36,
165 SET_BELL_FREQUENCY=0x37,
166 SET_INTERNAL_BATTERY_CHARGE_RATE=0x39,
167 SET_EXTERNAL_BATTERY_CHARGE_RATE=0x3A,
168 SET_REAL_TIME_CLOCK_ALARM=0x3B,
169 READ_EEPROM=0x40,
170 WRITE_EEPROM=0x41,
171 WRITE_TO_STATUS_DISPLAY=0x42,
172 DEFINE_SPECIAL_CHARACTER=0x43,
173 DEFINE_KEY_COMBINATION_ENTRY=0x50,
174 DEFINE_STRING_TABLE_ENTRY=0x51,
175 DEFINE_STATUS_SCREEN_DISPLAY=0x52,
176 PERFORM_EMU_COMMANDS=0x64,
177 READ_EMU_REGISTER=0x65,
178 WRITE_EMU_REGISTER=0x66,
179 READ_EMU_RAM=0x67,
180 WRITE_EMU_RAM=0x68,
181 READ_BQ_REGISTER=0x69,
182 WRITE_BQ_REGISTER=0x6A,
183 SET_USER_PASSWORD=0x70,
184 VERIFY_USER_PASSWORD=0x71,
185 GET_SYSTEM_PASSWORD_KEY=0x72,
186 VERIFY_SYSTEM_PASSWORD=0x73,
187 POWER_OFF=0x82,
188 POWER_RESTART=0x83,
189};
190
David S. Miller237f8aa2008-08-27 18:39:47 -0700191static struct uctrl_driver {
192 struct uctrl_regs __iomem *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int irq;
194 int pending;
195 struct uctrl_status status;
David S. Miller237f8aa2008-08-27 18:39:47 -0700196} *global_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
David S. Miller237f8aa2008-08-27 18:39:47 -0700198static void uctrl_get_event_status(struct uctrl_driver *);
199static void uctrl_get_external_status(struct uctrl_driver *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Stoyan Gaydarov6c0f8bc2009-04-14 19:46:19 -0700201static long
202uctrl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 switch (cmd) {
205 default:
206 return -EINVAL;
207 }
208 return 0;
209}
210
211static int
212uctrl_open(struct inode *inode, struct file *file)
213{
Arnd Bergmanna3108ca2010-07-20 23:36:39 -0700214 mutex_lock(&uctrl_mutex);
David S. Miller237f8aa2008-08-27 18:39:47 -0700215 uctrl_get_event_status(global_driver);
216 uctrl_get_external_status(global_driver);
Arnd Bergmanna3108ca2010-07-20 23:36:39 -0700217 mutex_unlock(&uctrl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return 0;
219}
220
David Howells7d12e782006-10-05 14:55:46 +0100221static irqreturn_t uctrl_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return IRQ_HANDLED;
224}
225
Arjan van de Ven00977a52007-02-12 00:55:34 -0800226static const struct file_operations uctrl_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .owner = THIS_MODULE,
228 .llseek = no_llseek,
Stoyan Gaydarov6c0f8bc2009-04-14 19:46:19 -0700229 .unlocked_ioctl = uctrl_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 .open = uctrl_open,
231};
232
233static struct miscdevice uctrl_dev = {
234 UCTRL_MINOR,
235 "uctrl",
236 &uctrl_fops
237};
238
239/* Wait for space to write, then write to it */
240#define WRITEUCTLDATA(value) \
241{ \
242 unsigned int i; \
243 for (i = 0; i < 10000; i++) { \
David S. Miller237f8aa2008-08-27 18:39:47 -0700244 if (UCTRL_STAT_TXNF_STA & sbus_readl(&driver->regs->uctrl_stat)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 break; \
246 } \
247 dprintk(("write data 0x%02x\n", value)); \
David S. Miller237f8aa2008-08-27 18:39:47 -0700248 sbus_writel(value, &driver->regs->uctrl_data); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251/* Wait for something to read, read it, then clear the bit */
252#define READUCTLDATA(value) \
253{ \
254 unsigned int i; \
255 value = 0; \
256 for (i = 0; i < 10000; i++) { \
David S. Miller237f8aa2008-08-27 18:39:47 -0700257 if ((UCTRL_STAT_RXNE_STA & sbus_readl(&driver->regs->uctrl_stat)) == 0) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break; \
259 udelay(1); \
260 } \
David S. Miller237f8aa2008-08-27 18:39:47 -0700261 value = sbus_readl(&driver->regs->uctrl_data); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 dprintk(("read data 0x%02x\n", value)); \
David S. Miller237f8aa2008-08-27 18:39:47 -0700263 sbus_writel(UCTRL_STAT_RXNE_STA, &driver->regs->uctrl_stat); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
David S. Miller237f8aa2008-08-27 18:39:47 -0700266static void uctrl_do_txn(struct uctrl_driver *driver, struct uctrl_txn *txn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 int stat, incnt, outcnt, bytecnt, intr;
269 u32 byte;
270
David S. Miller237f8aa2008-08-27 18:39:47 -0700271 stat = sbus_readl(&driver->regs->uctrl_stat);
272 intr = sbus_readl(&driver->regs->uctrl_intr);
273 sbus_writel(stat, &driver->regs->uctrl_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 dprintk(("interrupt stat 0x%x int 0x%x\n", stat, intr));
276
277 incnt = txn->inbits;
278 outcnt = txn->outbits;
279 byte = (txn->opcode << 8);
280 WRITEUCTLDATA(byte);
281
282 bytecnt = 0;
283 while (incnt > 0) {
284 byte = (txn->inbuf[bytecnt] << 8);
285 WRITEUCTLDATA(byte);
286 incnt--;
287 bytecnt++;
288 }
289
290 /* Get the ack */
291 READUCTLDATA(byte);
292 dprintk(("ack was %x\n", (byte >> 8)));
293
294 bytecnt = 0;
295 while (outcnt > 0) {
296 READUCTLDATA(byte);
297 txn->outbuf[bytecnt] = (byte >> 8);
298 dprintk(("set byte to %02x\n", byte));
299 outcnt--;
300 bytecnt++;
301 }
302}
303
David S. Miller237f8aa2008-08-27 18:39:47 -0700304static void uctrl_get_event_status(struct uctrl_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 struct uctrl_txn txn;
307 u8 outbits[2];
308
309 txn.opcode = READ_EVENT_STATUS;
310 txn.inbits = 0;
311 txn.outbits = 2;
Al Virofec607f2005-12-06 05:54:54 -0500312 txn.inbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 txn.outbuf = outbits;
314
David S. Miller237f8aa2008-08-27 18:39:47 -0700315 uctrl_do_txn(driver, &txn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 dprintk(("bytes %x %x\n", (outbits[0] & 0xff), (outbits[1] & 0xff)));
318 driver->status.event_status =
319 ((outbits[0] & 0xff) << 8) | (outbits[1] & 0xff);
320 dprintk(("ev is %x\n", driver->status.event_status));
321}
322
David S. Miller237f8aa2008-08-27 18:39:47 -0700323static void uctrl_get_external_status(struct uctrl_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 struct uctrl_txn txn;
326 u8 outbits[2];
327 int i, v;
328
329 txn.opcode = READ_EXTERNAL_STATUS;
330 txn.inbits = 0;
331 txn.outbits = 2;
Al Virofec607f2005-12-06 05:54:54 -0500332 txn.inbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 txn.outbuf = outbits;
334
David S. Miller237f8aa2008-08-27 18:39:47 -0700335 uctrl_do_txn(driver, &txn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 dprintk(("bytes %x %x\n", (outbits[0] & 0xff), (outbits[1] & 0xff)));
338 driver->status.external_status =
339 ((outbits[0] * 256) + (outbits[1]));
340 dprintk(("ex is %x\n", driver->status.external_status));
341 v = driver->status.external_status;
342 for (i = 0; v != 0; i++, v >>= 1) {
343 if (v & 1) {
344 dprintk(("%s%s", " ", uctrl_extstatus[i]));
345 }
346 }
347 dprintk(("\n"));
348
349}
350
Grant Likely2dc11582010-08-06 09:25:50 -0600351static int __devinit uctrl_probe(struct platform_device *op,
David S. Miller237f8aa2008-08-27 18:39:47 -0700352 const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
David S. Miller237f8aa2008-08-27 18:39:47 -0700354 struct uctrl_driver *p;
355 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
David S. Miller237f8aa2008-08-27 18:39:47 -0700357 p = kzalloc(sizeof(*p), GFP_KERNEL);
358 if (!p) {
359 printk(KERN_ERR "uctrl: Unable to allocate device struct.\n");
360 goto out;
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
David S. Miller237f8aa2008-08-27 18:39:47 -0700363 p->regs = of_ioremap(&op->resource[0], 0,
364 resource_size(&op->resource[0]),
365 "uctrl");
366 if (!p->regs) {
367 printk(KERN_ERR "uctrl: Unable to map registers.\n");
368 goto out_free;
369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Grant Likely1636f8a2010-06-18 11:09:58 -0600371 p->irq = op->archdata.irqs[0];
David S. Miller237f8aa2008-08-27 18:39:47 -0700372 err = request_irq(p->irq, uctrl_interrupt, 0, "uctrl", p);
David S. Miller19ba1b12007-02-26 09:46:54 -0800373 if (err) {
David S. Miller237f8aa2008-08-27 18:39:47 -0700374 printk(KERN_ERR "uctrl: Unable to register irq.\n");
375 goto out_iounmap;
David S. Miller19ba1b12007-02-26 09:46:54 -0800376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
David S. Miller237f8aa2008-08-27 18:39:47 -0700378 err = misc_register(&uctrl_dev);
379 if (err) {
380 printk(KERN_ERR "uctrl: Unable to register misc device.\n");
381 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
David S. Miller237f8aa2008-08-27 18:39:47 -0700384 sbus_writel(UCTRL_INTR_RXNE_REQ|UCTRL_INTR_RXNE_MSK, &p->regs->uctrl_intr);
385 printk(KERN_INFO "%s: uctrl regs[0x%p] (irq %d)\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700386 op->dev.of_node->full_name, p->regs, p->irq);
David S. Miller237f8aa2008-08-27 18:39:47 -0700387 uctrl_get_event_status(p);
388 uctrl_get_external_status(p);
389
390 dev_set_drvdata(&op->dev, p);
391 global_driver = p;
392
393out:
394 return err;
395
396out_free_irq:
397 free_irq(p->irq, p);
398
399out_iounmap:
400 of_iounmap(&op->resource[0], p->regs, resource_size(&op->resource[0]));
401
402out_free:
403 kfree(p);
404 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Grant Likely2dc11582010-08-06 09:25:50 -0600407static int __devexit uctrl_remove(struct platform_device *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
David S. Miller237f8aa2008-08-27 18:39:47 -0700409 struct uctrl_driver *p = dev_get_drvdata(&op->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
David S. Miller237f8aa2008-08-27 18:39:47 -0700411 if (p) {
412 misc_deregister(&uctrl_dev);
413 free_irq(p->irq, p);
414 of_iounmap(&op->resource[0], p->regs, resource_size(&op->resource[0]));
415 kfree(p);
416 }
417 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
David S. Millerfd098312008-08-31 01:23:17 -0700420static const struct of_device_id uctrl_match[] = {
David S. Miller237f8aa2008-08-27 18:39:47 -0700421 {
422 .name = "uctrl",
423 },
424 {},
425};
426MODULE_DEVICE_TABLE(of, uctrl_match);
427
428static struct of_platform_driver uctrl_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700429 .driver = {
430 .name = "uctrl",
431 .owner = THIS_MODULE,
432 .of_match_table = uctrl_match,
433 },
David S. Miller237f8aa2008-08-27 18:39:47 -0700434 .probe = uctrl_probe,
435 .remove = __devexit_p(uctrl_remove),
436};
437
438
439static int __init uctrl_init(void)
440{
Grant Likely1ab1d632010-06-24 15:14:37 -0600441 return of_register_platform_driver(&uctrl_driver);
David S. Miller237f8aa2008-08-27 18:39:47 -0700442}
443
444static void __exit uctrl_exit(void)
445{
Grant Likely1ab1d632010-06-24 15:14:37 -0600446 of_unregister_platform_driver(&uctrl_driver);
David S. Miller237f8aa2008-08-27 18:39:47 -0700447}
448
449module_init(uctrl_init);
450module_exit(uctrl_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451MODULE_LICENSE("GPL");