2 * Driver for CPM (SCC/SMC) serial ports
4 * Copyright (C) 2004 Freescale Semiconductor, Inc.
6 * 2006 (c) MontaVista Software, Inc.
7 * Vitaly Bordug <vbordug@ru.mvista.com>
9 * This file is licensed under the terms of the GNU General Public License
10 * version 2. This program is licensed "as is" without any warranty of any
11 * kind, whether express or implied.
17 #include <linux/platform_device.h>
18 #include <linux/fs_uart_pd.h>
20 #if defined(CONFIG_CPM2)
21 #include "cpm_uart_cpm2.h"
22 #elif defined(CONFIG_8xx)
23 #include "cpm_uart_cpm1.h"
26 #define SERIAL_CPM_MAJOR 204
27 #define SERIAL_CPM_MINOR 46
29 #define IS_SMC(pinfo) (pinfo->flags & FLAG_SMC)
30 #define IS_DISCARDING(pinfo) (pinfo->flags & FLAG_DISCARDING)
31 #define FLAG_DISCARDING 0x00000004 /* when set, don't discard */
32 #define FLAG_SMC 0x00000002
33 #define FLAG_CONSOLE 0x00000001
35 #define UART_SMC1 fsid_smc1_uart
36 #define UART_SMC2 fsid_smc2_uart
37 #define UART_SCC1 fsid_scc1_uart
38 #define UART_SCC2 fsid_scc2_uart
39 #define UART_SCC3 fsid_scc3_uart
40 #define UART_SCC4 fsid_scc4_uart
42 #define UART_NR fs_uart_nr
45 #define RX_BUF_SIZE 32
47 #define TX_BUF_SIZE 32
49 #define SCC_WAIT_CLOSING 100
58 #define NUM_GPIOS (GPIO_RI+1)
60 struct uart_cpm_port
{
61 struct uart_port port
;
67 smc_uart_t __iomem
*smcup
;
69 scc_uart_t __iomem
*sccup
;
70 cbd_t __iomem
*rx_bd_base
;
71 cbd_t __iomem
*rx_cur
;
72 cbd_t __iomem
*tx_bd_base
;
73 cbd_t __iomem
*tx_cur
;
74 unsigned char *tx_buf
;
75 unsigned char *rx_buf
;
83 /* wait on close if needed */
85 /* value to combine with opcode to form cpm command */
90 extern int cpm_uart_nr
;
91 extern struct uart_cpm_port cpm_uart_ports
[UART_NR
];
93 /* these are located in their respective files */
94 void cpm_line_cr_cmd(struct uart_cpm_port
*port
, int cmd
);
95 void __iomem
*cpm_uart_map_pram(struct uart_cpm_port
*port
,
96 struct device_node
*np
);
97 void cpm_uart_unmap_pram(struct uart_cpm_port
*port
, void __iomem
*pram
);
98 int cpm_uart_init_portdesc(void);
99 int cpm_uart_allocbuf(struct uart_cpm_port
*pinfo
, unsigned int is_con
);
100 void cpm_uart_freebuf(struct uart_cpm_port
*pinfo
);
102 void smc1_lineif(struct uart_cpm_port
*pinfo
);
103 void smc2_lineif(struct uart_cpm_port
*pinfo
);
104 void scc1_lineif(struct uart_cpm_port
*pinfo
);
105 void scc2_lineif(struct uart_cpm_port
*pinfo
);
106 void scc3_lineif(struct uart_cpm_port
*pinfo
);
107 void scc4_lineif(struct uart_cpm_port
*pinfo
);
110 virtual to phys transtalion
112 static inline unsigned long cpu2cpm_addr(void *addr
,
113 struct uart_cpm_port
*pinfo
)
117 u32 mem
= (u32
)pinfo
->mem_addr
;
119 if (likely(val
>= mem
&& val
< mem
+ pinfo
->mem_size
)) {
121 return pinfo
->dma_addr
+ offset
;
123 /* something nasty happened */
128 static inline void *cpm2cpu_addr(unsigned long addr
,
129 struct uart_cpm_port
*pinfo
)
133 u32 dma
= (u32
)pinfo
->dma_addr
;
135 if (likely(val
>= dma
&& val
< dma
+ pinfo
->mem_size
)) {
137 return pinfo
->mem_addr
+ offset
;
139 /* something nasty happened */
145 #endif /* CPM_UART_H */