Blame view

drivers/serial/8250_hp300.c 7.69 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
  /*
   * Driver for the 98626/98644/internal serial interface on hp300/hp400
   * (based on the National Semiconductor INS8250/NS16550AF/WD16C552 UARTs)
   *
   * Ported from 2.2 and modified to use the normal 8250 driver
   * by Kars de Jong <jongk@linux-m68k.org>, May 2004.
   */
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/string.h>
  #include <linux/kernel.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
  #include <linux/serial.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
  #include <linux/serial_core.h>
b187f180c   Yinghai Lu   serial: add early...
14
  #include <linux/serial_8250.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
  #include <linux/delay.h>
  #include <linux/dio.h>
  #include <linux/console.h>
  #include <asm/io.h>
2b49abac5   Russell King   [PATCH] Serial: C...
19
  #include "8250.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  #if !defined(CONFIG_HPDCA) && !defined(CONFIG_HPAPCI)
  #warning CONFIG_8250 defined but neither CONFIG_HPDCA nor CONFIG_HPAPCI defined, are you sure?
  #endif
  
  #ifdef CONFIG_HPAPCI
  struct hp300_port
  {
  	struct hp300_port *next;	/* next port */
  	int line;			/* line (tty) number */
  };
  
  static struct hp300_port *hp300_ports;
  #endif
  
  #ifdef CONFIG_HPDCA
  
  static int __devinit hpdca_init_one(struct dio_dev *d,
                                  const struct dio_device_id *ent);
  static void __devexit hpdca_remove_one(struct dio_dev *d);
  
  static struct dio_device_id hpdca_dio_tbl[] = {
  	{ DIO_ID_DCA0 },
  	{ DIO_ID_DCA0REM },
  	{ DIO_ID_DCA1 },
  	{ DIO_ID_DCA1REM },
  	{ 0 }
  };
  
  static struct dio_driver hpdca_driver = {
  	.name      = "hpdca",
  	.id_table  = hpdca_dio_tbl,
  	.probe     = hpdca_init_one,
  	.remove    = __devexit_p(hpdca_remove_one),
  };
  
  #endif
e51c01b08   Bjorn Helgaas   [PATCH] hp300: fi...
56
  static unsigned int num_ports;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  extern int hp300_uart_scode;
  
  /* Offset to UART registers from base of DCA */
  #define UART_OFFSET	17
  
  #define DCA_ID		0x01	/* ID (read), reset (write) */
  #define DCA_IC		0x03	/* Interrupt control        */
  
  /* Interrupt control */
  #define DCA_IC_IE	0x80	/* Master interrupt enable  */
  
  #define HPDCA_BAUD_BASE 153600
  
  /* Base address of the Frodo part */
  #define FRODO_BASE	(0x41c000)
  
  /*
   * Where we find the 8250-like APCI ports, and how far apart they are.
   */
  #define FRODO_APCIBASE		0x0
  #define FRODO_APCISPACE		0x20
  #define FRODO_APCI_OFFSET(x)	(FRODO_APCIBASE + ((x) * FRODO_APCISPACE))
  
  #define HPAPCI_BAUD_BASE 500400
  
  #ifdef CONFIG_SERIAL_8250_CONSOLE
  /*
   * Parse the bootinfo to find descriptions for headless console and 
   * debug serial ports and register them with the 8250 driver.
   * This function should be called before serial_console_init() is called
   * to make sure the serial console will be available for use. IA-64 kernel
   * calls this function from setup_arch() after the EFI and ACPI tables have
   * been parsed.
   */
  int __init hp300_setup_serial_console(void)
  {
  	int scode;
  	struct uart_port port;
  
  	memset(&port, 0, sizeof(port));
  
  	if (hp300_uart_scode < 0 || hp300_uart_scode > DIO_SCMAX)
  		return 0;
  
  	if (DIO_SCINHOLE(hp300_uart_scode))
  		return 0;
  
  	scode = hp300_uart_scode;
  
  	/* Memory mapped I/O */
  	port.iotype = UPIO_MEM;
  	port.flags = UPF_SKIP_TEST | UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF;
  	port.type = PORT_UNKNOWN;
  
  	/* Check for APCI console */
  	if (scode == 256) {
  #ifdef CONFIG_HPAPCI
  		printk(KERN_INFO "Serial console is HP APCI 1
  ");
  
  		port.uartclk = HPAPCI_BAUD_BASE * 16;
  		port.mapbase = (FRODO_BASE + FRODO_APCI_OFFSET(1));
  		port.membase = (char *)(port.mapbase + DIO_VIRADDRBASE);
  		port.regshift = 2;
  		add_preferred_console("ttyS", port.line, "9600n8");
  #else
  		printk(KERN_WARNING "Serial console is APCI but support is disabled (CONFIG_HPAPCI)!
  ");
  		return 0;
  #endif
  	}
  	else {
  #ifdef CONFIG_HPDCA
  		unsigned long pa = dio_scodetophysaddr(scode);
  		if (!pa) {
  			return 0;
  		}
  
  		printk(KERN_INFO "Serial console is HP DCA at select code %d
  ", scode);
  
  		port.uartclk = HPDCA_BAUD_BASE * 16;
  		port.mapbase = (pa + UART_OFFSET);
  		port.membase = (char *)(port.mapbase + DIO_VIRADDRBASE);
  		port.regshift = 1;
  		port.irq = DIO_IPL(pa + DIO_VIRADDRBASE);
  
  		/* Enable board-interrupts */
  		out_8(pa + DIO_VIRADDRBASE + DCA_IC, DCA_IC_IE);
  
  		if (DIO_ID(pa + DIO_VIRADDRBASE) & 0x80) {
  			add_preferred_console("ttyS", port.line, "9600n8");
  		}
  #else
  		printk(KERN_WARNING "Serial console is DCA but support is disabled (CONFIG_HPDCA)!
  ");
  		return 0;
  #endif
  	}
  
  	if (early_serial_setup(&port) < 0) {
  		printk(KERN_WARNING "hp300_setup_serial_console(): early_serial_setup() failed.
  ");
  	}
  
  	return 0;
  }
  #endif /* CONFIG_SERIAL_8250_CONSOLE */
  
  #ifdef CONFIG_HPDCA
  static int __devinit hpdca_init_one(struct dio_dev *d,
                                  const struct dio_device_id *ent)
  {
2b49abac5   Russell King   [PATCH] Serial: C...
170
  	struct uart_port port;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
171
172
173
174
175
176
177
178
  	int line;
  
  #ifdef CONFIG_SERIAL_8250_CONSOLE
  	if (hp300_uart_scode == d->scode) {
  		/* Already got it. */
  		return 0;
  	}
  #endif
2b49abac5   Russell King   [PATCH] Serial: C...
179
  	memset(&port, 0, sizeof(struct uart_port));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
180
181
  
  	/* Memory mapped I/O */
2b49abac5   Russell King   [PATCH] Serial: C...
182
183
184
185
186
187
188
189
190
  	port.iotype = UPIO_MEM;
  	port.flags = UPF_SKIP_TEST | UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF;
  	port.irq = d->ipl;
  	port.uartclk = HPDCA_BAUD_BASE * 16;
  	port.mapbase = (d->resource.start + UART_OFFSET);
  	port.membase = (char *)(port.mapbase + DIO_VIRADDRBASE);
  	port.regshift = 1;
  	port.dev = &d->dev;
  	line = serial8250_register_port(&port);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
191
192
193
  
  	if (line < 0) {
  		printk(KERN_NOTICE "8250_hp300: register_serial() DCA scode %d"
2b49abac5   Russell King   [PATCH] Serial: C...
194
195
  		       " irq %d failed
  ", d->scode, port.irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
196
197
198
199
200
201
202
203
204
205
  		return -ENOMEM;
  	}
  
  	/* Enable board-interrupts */
  	out_8(d->resource.start + DIO_VIRADDRBASE + DCA_IC, DCA_IC_IE);
  	dio_set_drvdata(d, (void *)line);
  
  	/* Reset the DCA */
  	out_8(d->resource.start + DIO_VIRADDRBASE + DCA_ID, 0xff);
  	udelay(100);
e51c01b08   Bjorn Helgaas   [PATCH] hp300: fi...
206
  	num_ports++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
207
208
209
210
211
212
213
  	return 0;
  }
  #endif
  
  static int __init hp300_8250_init(void)
  {
  	static int called = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
215
216
  #ifdef CONFIG_HPAPCI
  	int line;
  	unsigned long base;
2b49abac5   Russell King   [PATCH] Serial: C...
217
  	struct uart_port uport;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
218
219
220
221
222
223
224
225
226
  	struct hp300_port *port;
  	int i;
  #endif
  	if (called)
  		return -ENODEV;
  	called = 1;
  
  	if (!MACH_IS_HP300)
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
  #ifdef CONFIG_HPDCA
e51c01b08   Bjorn Helgaas   [PATCH] hp300: fi...
228
  	dio_register_driver(&hpdca_driver);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
  #endif
  #ifdef CONFIG_HPAPCI
  	if (hp300_model < HP_400) {
  		if (!num_ports)
  			return -ENODEV;
  		return 0;
  	}
  	/* These models have the Frodo chip.
  	 * Port 0 is reserved for the Apollo Domain keyboard.
  	 * Port 1 is either the console or the DCA.
  	 */
  	for (i = 1; i < 4; i++) {
  		/* Port 1 is the console on a 425e, on other machines it's mapped to
  		 * DCA.
  		 */
  #ifdef CONFIG_SERIAL_8250_CONSOLE
  		if (i == 1) {
  			continue;
  		}
  #endif
  
  		/* Create new serial device */
  		port = kmalloc(sizeof(struct hp300_port), GFP_KERNEL);
  		if (!port)
  			return -ENOMEM;
2b49abac5   Russell King   [PATCH] Serial: C...
254
  		memset(&uport, 0, sizeof(struct uart_port));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
256
257
258
  
  		base = (FRODO_BASE + FRODO_APCI_OFFSET(i));
  
  		/* Memory mapped I/O */
2b49abac5   Russell King   [PATCH] Serial: C...
259
260
  		uport.iotype = UPIO_MEM;
  		uport.flags = UPF_SKIP_TEST | UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
  		/* XXX - no interrupt support yet */
2b49abac5   Russell King   [PATCH] Serial: C...
262
263
264
265
266
  		uport.irq = 0;
  		uport.uartclk = HPAPCI_BAUD_BASE * 16;
  		uport.mapbase = base;
  		uport.membase = (char *)(base + DIO_VIRADDRBASE);
  		uport.regshift = 2;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
267

2b49abac5   Russell King   [PATCH] Serial: C...
268
  		line = serial8250_register_port(&uport);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
269
270
271
  
  		if (line < 0) {
  			printk(KERN_NOTICE "8250_hp300: register_serial() APCI %d"
2b49abac5   Russell King   [PATCH] Serial: C...
272
273
  			       " irq %d failed
  ", i, uport.irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
  			kfree(port);
  			continue;
  		}
  
  		port->line = line;
  		port->next = hp300_ports;
  		hp300_ports = port;
  
  		num_ports++;
  	}
  #endif
  
  	/* Any boards found? */
  	if (!num_ports)
  		return -ENODEV;
  
  	return 0;
  }
  
  #ifdef CONFIG_HPDCA
  static void __devexit hpdca_remove_one(struct dio_dev *d)
  {
  	int line;
  
  	line = (int) dio_get_drvdata(d);
  	if (d->resource.start) {
  		/* Disable board-interrupts */
  		out_8(d->resource.start + DIO_VIRADDRBASE + DCA_IC, 0);
  	}
2b49abac5   Russell King   [PATCH] Serial: C...
303
  	serial8250_unregister_port(line);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
304
305
306
307
308
309
310
311
312
  }
  #endif
  
  static void __exit hp300_8250_exit(void)
  {
  #ifdef CONFIG_HPAPCI
  	struct hp300_port *port, *to_free;
  
  	for (port = hp300_ports; port; ) {
2b49abac5   Russell King   [PATCH] Serial: C...
313
  		serial8250_unregister_port(port->line);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
  		to_free = port;
  		port = port->next;
  		kfree(to_free);
  	}
  
  	hp300_ports = NULL;
  #endif
  #ifdef CONFIG_HPDCA
  	dio_unregister_driver(&hpdca_driver);
  #endif
  }
  
  module_init(hp300_8250_init);
  module_exit(hp300_8250_exit);
  MODULE_DESCRIPTION("HP DCA/APCI serial driver");
  MODULE_AUTHOR("Kars de Jong <jongk@linux-m68k.org>");
  MODULE_LICENSE("GPL");