2 * setup serial port in SCC
4 * (C) Copyright 2006-2007 TOSHIBA CORPORATION
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <linux/tty.h>
22 #include <linux/serial.h>
23 #include <linux/serial_core.h>
24 #include <linux/console.h>
29 /* sio irq0=0xb00010022 irq0=0xb00010023 irq2=0xb00010024
30 mmio=0xfff000-0x1000,0xff2000-0x1000 */
31 static int txx9_serial_bitmap __initdata
;
36 } txx9_scc_tab
[3] __initdata
= {
37 { 0x300, 0 }, /* 0xFFF300 */
38 { 0x400, 0 }, /* 0xFFF400 */
39 { 0x800, 1 } /* 0xFF2800 */
42 static int __init
txx9_serial_init(void)
44 extern int early_serial_txx9_setup(struct uart_port
*port
);
45 struct device_node
*node
= NULL
;
51 while ((node
= of_find_compatible_node(node
,
52 "serial", "toshiba,sio-scc")) != NULL
) {
53 for (i
= 0; i
< ARRAY_SIZE(txx9_scc_tab
); i
++) {
54 if (!(txx9_serial_bitmap
& (1<<i
)))
57 if (of_irq_map_one(node
, i
, &irq
))
59 if (of_address_to_resource(node
,
60 txx9_scc_tab
[i
].index
, &res
))
63 memset(&req
, 0, sizeof(req
));
65 req
.iotype
= UPIO_MEM
;
66 req
.mapbase
= res
.start
+ txx9_scc_tab
[i
].offset
;
67 #ifdef CONFIG_SERIAL_TXX9_CONSOLE
68 req
.membase
= ioremap(req
.mapbase
, 0x24);
70 req
.irq
= irq_create_of_mapping(irq
.controller
,
71 irq
.specifier
, irq
.size
);
72 req
.flags
|= UPF_IOREMAP
| UPF_BUGGY_UART
74 req
.uartclk
= 83300000;
75 early_serial_txx9_setup(&req
);
82 static int __init
txx9_serial_config(char *ptr
)
87 switch (get_option(&ptr
, &i
)) {
91 txx9_serial_bitmap
|= 1 << i
;
94 txx9_serial_bitmap
|= 1 << i
;
99 __setup("txx9_serial=", txx9_serial_config
);
101 console_initcall(txx9_serial_init
);