2 * Copyright 2008-2011, IBM Corporation
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 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
10 #include <linux/kernel.h>
17 * The UART connection to the H8 is over ttyS1 which is just a 16550.
18 * We assume that FW has it setup right and no one messes with it.
22 static u8 __iomem
*h8
;
24 #define RBR 0 /* Receiver Buffer Register */
25 #define THR 0 /* Transmitter Holding Register */
26 #define LSR 5 /* Line Status Register */
27 #define LSR_DR 0x01 /* LSR value for Data-Ready */
28 #define LSR_THRE 0x20 /* LSR value for Transmitter-Holding-Register-Empty */
29 static void wsp_h8_putc(int c
)
34 lsr
= readb(h8
+ LSR
);
35 } while ((lsr
& LSR_THRE
) != LSR_THRE
);
39 static int wsp_h8_getc(void)
44 lsr
= readb(h8
+ LSR
);
45 } while ((lsr
& LSR_DR
) != LSR_DR
);
47 return readb(h8
+ RBR
);
50 static void wsp_h8_puts(const char *s
, int sz
)
54 for (i
= 0; i
< sz
; i
++) {
57 /* no flow control so wait for echo */
64 static void wsp_h8_terminal_cmd(const char *cmd
, int sz
)
68 /* should never return, but just in case */
74 void wsp_h8_restart(char *cmd
)
76 static const char restart
[] = "warm-reset";
79 wsp_h8_terminal_cmd(restart
, sizeof(restart
) - 1);
82 void wsp_h8_power_off(void)
84 static const char off
[] = "power-off";
86 wsp_h8_terminal_cmd(off
, sizeof(off
) - 1);
89 static void __iomem
*wsp_h8_getaddr(void)
91 struct device_node
*aliases
;
92 struct device_node
*uart
;
93 struct property
*path
;
94 void __iomem
*va
= NULL
;
97 * there is nothing in the devtree to tell us which is mapped
98 * to the H8, but se know it is the second serial port.
101 aliases
= of_find_node_by_path("/aliases");
105 path
= of_find_property(aliases
, "serial1", NULL
);
109 uart
= of_find_node_by_path(path
->value
);
113 va
= of_iomap(uart
, 0);
115 /* remove it so no one messes with it */
116 of_detach_node(uart
);
120 of_node_put(aliases
);
125 void __init
wsp_setup_h8(void)
127 h8
= wsp_h8_getaddr();
129 /* Devtree change? lets hard map it anyway */
131 pr_warn("UART to H8 could not be found");
132 h8
= ioremap(0xffc0008000ULL
, 0x100);