tty: move hvc drivers to drivers/tty/hvc/
[deliverable/linux.git] / drivers / serial / cpm_uart / cpm_uart.h
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/serial/cpm_uart.h
3 *
4 * Driver for CPM (SCC/SMC) serial ports
5 *
6 * Copyright (C) 2004 Freescale Semiconductor, Inc.
7 *
6e197696 8 * 2006 (c) MontaVista Software, Inc.
0d844065 9 * Vitaly Bordug <vbordug@ru.mvista.com>
6e197696
VB
10 *
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
14 *
1da177e4
LT
15 */
16#ifndef CPM_UART_H
17#define CPM_UART_H
18
e27987cd
VB
19#include <linux/platform_device.h>
20#include <linux/fs_uart_pd.h>
1da177e4
LT
21
22#if defined(CONFIG_CPM2)
23#include "cpm_uart_cpm2.h"
24#elif defined(CONFIG_8xx)
25#include "cpm_uart_cpm1.h"
26#endif
27
28#define SERIAL_CPM_MAJOR 204
29#define SERIAL_CPM_MINOR 46
30
0d844065 31#define IS_SMC(pinfo) (pinfo->flags & FLAG_SMC)
1da177e4
LT
32#define IS_DISCARDING(pinfo) (pinfo->flags & FLAG_DISCARDING)
33#define FLAG_DISCARDING 0x00000004 /* when set, don't discard */
34#define FLAG_SMC 0x00000002
35#define FLAG_CONSOLE 0x00000001
36
e27987cd
VB
37#define UART_SMC1 fsid_smc1_uart
38#define UART_SMC2 fsid_smc2_uart
39#define UART_SCC1 fsid_scc1_uart
40#define UART_SCC2 fsid_scc2_uart
41#define UART_SCC3 fsid_scc3_uart
42#define UART_SCC4 fsid_scc4_uart
1da177e4 43
e27987cd 44#define UART_NR fs_uart_nr
1da177e4
LT
45
46#define RX_NUM_FIFO 4
47#define RX_BUF_SIZE 32
48#define TX_NUM_FIFO 4
49#define TX_BUF_SIZE 32
50
311c4627
KG
51#define SCC_WAIT_CLOSING 100
52
7485d26b
LP
53#define GPIO_CTS 0
54#define GPIO_RTS 1
55#define GPIO_DCD 2
56#define GPIO_DSR 3
57#define GPIO_DTR 4
58#define GPIO_RI 5
59
60#define NUM_GPIOS (GPIO_RI+1)
61
1da177e4
LT
62struct uart_cpm_port {
63 struct uart_port port;
311c4627 64 u16 rx_nrfifos;
1da177e4 65 u16 rx_fifosize;
311c4627 66 u16 tx_nrfifos;
1da177e4 67 u16 tx_fifosize;
c1dcfd9d
SW
68 smc_t __iomem *smcp;
69 smc_uart_t __iomem *smcup;
70 scc_t __iomem *sccp;
71 scc_uart_t __iomem *sccup;
72 cbd_t __iomem *rx_bd_base;
73 cbd_t __iomem *rx_cur;
74 cbd_t __iomem *tx_bd_base;
75 cbd_t __iomem *tx_cur;
1da177e4
LT
76 unsigned char *tx_buf;
77 unsigned char *rx_buf;
78 u32 flags;
80776554 79 struct clk *clk;
1da177e4
LT
80 u8 brg;
81 uint dp_addr;
0d844065 82 void *mem_addr;
1da177e4 83 dma_addr_t dma_addr;
09b03b6c 84 u32 mem_size;
311c4627 85 /* wait on close if needed */
0d844065 86 int wait_closing;
7ae87036
SW
87 /* value to combine with opcode to form cpm command */
88 u32 command;
7485d26b 89 int gpios[NUM_GPIOS];
1da177e4
LT
90};
91
1da177e4
LT
92extern int cpm_uart_nr;
93extern struct uart_cpm_port cpm_uart_ports[UART_NR];
94
95/* these are located in their respective files */
7ae87036 96void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd);
d464df26
LP
97void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
98 struct device_node *np);
99void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram);
32a56ebb 100int cpm_uart_init_portdesc(void);
1da177e4
LT
101int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con);
102void cpm_uart_freebuf(struct uart_cpm_port *pinfo);
103
104void smc1_lineif(struct uart_cpm_port *pinfo);
105void smc2_lineif(struct uart_cpm_port *pinfo);
106void scc1_lineif(struct uart_cpm_port *pinfo);
107void scc2_lineif(struct uart_cpm_port *pinfo);
108void scc3_lineif(struct uart_cpm_port *pinfo);
109void scc4_lineif(struct uart_cpm_port *pinfo);
110
09b03b6c
VB
111/*
112 virtual to phys transtalion
113*/
c1dcfd9d
SW
114static inline unsigned long cpu2cpm_addr(void *addr,
115 struct uart_cpm_port *pinfo)
09b03b6c
VB
116{
117 int offset;
118 u32 val = (u32)addr;
c1dcfd9d 119 u32 mem = (u32)pinfo->mem_addr;
09b03b6c 120 /* sane check */
c1dcfd9d
SW
121 if (likely(val >= mem && val < mem + pinfo->mem_size)) {
122 offset = val - mem;
123 return pinfo->dma_addr + offset;
09b03b6c 124 }
6e197696
VB
125 /* something nasty happened */
126 BUG();
09b03b6c
VB
127 return 0;
128}
129
c1dcfd9d
SW
130static inline void *cpm2cpu_addr(unsigned long addr,
131 struct uart_cpm_port *pinfo)
09b03b6c
VB
132{
133 int offset;
134 u32 val = addr;
c1dcfd9d 135 u32 dma = (u32)pinfo->dma_addr;
09b03b6c 136 /* sane check */
c1dcfd9d
SW
137 if (likely(val >= dma && val < dma + pinfo->mem_size)) {
138 offset = val - dma;
139 return pinfo->mem_addr + offset;
09b03b6c 140 }
6e197696
VB
141 /* something nasty happened */
142 BUG();
c1dcfd9d 143 return NULL;
09b03b6c
VB
144}
145
146
1da177e4 147#endif /* CPM_UART_H */
This page took 0.660165 seconds and 5 git commands to generate.