3 * Michael Kurz <michi.kurz@googlemail.com>.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 #include <asm/addrspace.h>
25 #include <asm/types.h>
27 #include <asm/ar71xx.h>
31 /* === END OF CONFIG === */
34 #define OFS_RCV_BUFFER (0*REG_SIZE)
35 #define OFS_TRANS_HOLD (0*REG_SIZE)
36 #define OFS_SEND_BUFFER (0*REG_SIZE)
37 #define OFS_INTR_ENABLE (1*REG_SIZE)
38 #define OFS_INTR_ID (2*REG_SIZE)
39 #define OFS_DATA_FORMAT (3*REG_SIZE)
40 #define OFS_LINE_CONTROL (3*REG_SIZE)
41 #define OFS_MODEM_CONTROL (4*REG_SIZE)
42 #define OFS_RS232_OUTPUT (4*REG_SIZE)
43 #define OFS_LINE_STATUS (5*REG_SIZE)
44 #define OFS_MODEM_STATUS (6*REG_SIZE)
45 #define OFS_RS232_INPUT (6*REG_SIZE)
46 #define OFS_SCRATCH_PAD (7*REG_SIZE)
48 #define OFS_DIVISOR_LSB (0*REG_SIZE)
49 #define OFS_DIVISOR_MSB (1*REG_SIZE)
51 #define UART16550_READ(y) readl(KSEG1ADDR(AR71XX_UART_BASE+y))
52 #define UART16550_WRITE(x, z) writel(z, KSEG1ADDR((AR71XX_UART_BASE+x)))
55 ar71xx_sys_frequency(u32
*cpu_freq
, u32
*ddr_freq
, u32
*ahb_freq
)
58 u32 pll
, pll_div
, cpu_div
, ahb_div
, ddr_div
, freq
;
60 pll
= readl(KSEG1ADDR(AR71XX_PLL_REG_CPU_CONFIG
+ AR71XX_PLL_BASE
));
63 ((pll
& AR71XX_PLL_DIV_MASK
) >> AR71XX_PLL_DIV_SHIFT
) + 1;
66 ((pll
& AR71XX_CPU_DIV_MASK
) >> AR71XX_CPU_DIV_SHIFT
) + 1;
69 ((pll
& AR71XX_DDR_DIV_MASK
) >> AR71XX_DDR_DIV_SHIFT
) + 1;
72 (((pll
& AR71XX_AHB_DIV_MASK
) >> AR71XX_AHB_DIV_SHIFT
) + 1)*2;
74 freq
= pll_div
* 40000000;
77 *cpu_freq
= freq
/cpu_div
;
80 *ddr_freq
= freq
/ddr_div
;
83 *ahb_freq
= (freq
/cpu_div
)/ahb_div
;
86 u32 pll
, pll_div
, ahb_div
, ddr_div
, freq
;
88 pll
= readl(KSEG1ADDR(AR91XX_PLL_REG_CPU_CONFIG
+ AR71XX_PLL_BASE
));
91 ((pll
& AR91XX_PLL_DIV_MASK
) >> AR91XX_PLL_DIV_SHIFT
);
94 ((pll
& AR91XX_DDR_DIV_MASK
) >> AR91XX_DDR_DIV_SHIFT
) + 1;
97 (((pll
& AR91XX_AHB_DIV_MASK
) >> AR91XX_AHB_DIV_SHIFT
) + 1)*2;
99 freq
= pll_div
* 5000000;
105 *ddr_freq
= freq
/ddr_div
;
108 *ahb_freq
= freq
/ahb_div
;
113 int serial_init(void)
116 u32 ahb_freq
= 100000000;
118 ar71xx_sys_frequency (0, 0, &ahb_freq
);
119 div
= ahb_freq
/(16 * CONFIG_BAUDRATE
);
122 #ifndef CONFIG_AR91XX
123 writel(AR71XX_GPIO_FUNC_UART_EN
, KSEG1ADDR(AR71XX_GPIO_BASE
+ GPIO_REG_FUNC
));
125 writel(AR91XX_GPIO_FUNC_UART_EN
, KSEG1ADDR(AR71XX_GPIO_BASE
+ GPIO_REG_FUNC
));
129 UART16550_WRITE(OFS_LINE_CONTROL
, 0x80);
132 UART16550_WRITE(OFS_DIVISOR_LSB
, (div
& 0xff));
133 UART16550_WRITE(OFS_DIVISOR_MSB
, ((div
>> 8) & 0xff));
136 UART16550_WRITE(OFS_LINE_CONTROL
, 0x00);
138 /* set data format */
139 UART16550_WRITE(OFS_DATA_FORMAT
, 0x3);
141 UART16550_WRITE(OFS_INTR_ENABLE
, 0);
146 int serial_tstc (void)
148 return(UART16550_READ(OFS_LINE_STATUS
) & 0x1);
151 int serial_getc(void)
153 while(!serial_tstc());
155 return UART16550_READ(OFS_RCV_BUFFER
);
159 void serial_putc(const char byte
)
161 if (byte
== '\n') serial_putc ('\r');
163 while (((UART16550_READ(OFS_LINE_STATUS
)) & 0x20) == 0x0);
164 UART16550_WRITE(OFS_SEND_BUFFER
, byte
);
167 void serial_setbrg (void)
171 void serial_puts (const char *s
)