blob: 4e1987adc23be57c037928162374fcccf9feaeb9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Vitaly Bordug6e1976962006-04-29 23:06:00 +04008 * 2006 (c) MontaVista Software, Inc.
9 * Vitaly Bordug <vbordug@ru.mvista.com>
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16#ifndef CPM_UART_H
17#define CPM_UART_H
18
Vitaly Borduge27987c2006-04-25 20:26:41 +040019#include <linux/platform_device.h>
20#include <linux/fs_uart_pd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
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
31#define IS_SMC(pinfo) (pinfo->flags & FLAG_SMC)
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
Vitaly Borduge27987c2006-04-25 20:26:41 +040037#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Vitaly Borduge27987c2006-04-25 20:26:41 +040044#define UART_NR fs_uart_nr
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
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
Kumar Gala311c4622005-08-09 10:08:00 -070051#define SCC_WAIT_CLOSING 100
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053struct uart_cpm_port {
54 struct uart_port port;
Kumar Gala311c4622005-08-09 10:08:00 -070055 u16 rx_nrfifos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 u16 rx_fifosize;
Kumar Gala311c4622005-08-09 10:08:00 -070057 u16 tx_nrfifos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 u16 tx_fifosize;
Kumar Gala311c4622005-08-09 10:08:00 -070059 smc_t *smcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 smc_uart_t *smcup;
61 scc_t *sccp;
62 scc_uart_t *sccup;
63 volatile cbd_t *rx_bd_base;
64 volatile cbd_t *rx_cur;
65 volatile cbd_t *tx_bd_base;
66 volatile cbd_t *tx_cur;
67 unsigned char *tx_buf;
68 unsigned char *rx_buf;
69 u32 flags;
70 void (*set_lineif)(struct uart_cpm_port *);
71 u8 brg;
72 uint dp_addr;
73 void *mem_addr;
74 dma_addr_t dma_addr;
Vitaly Bordug09b03b62006-04-25 20:26:46 +040075 u32 mem_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /* helpers */
77 int baud;
78 int bits;
79 /* Keep track of 'odd' SMC2 wirings */
80 int is_portb;
Kumar Gala311c4622005-08-09 10:08:00 -070081 /* wait on close if needed */
82 int wait_closing;
Scott Wood7ae87032007-07-17 17:59:06 -050083 /* value to combine with opcode to form cpm command */
84 u32 command;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
Scott Wood7ae87032007-07-17 17:59:06 -050087#ifndef CONFIG_PPC_CPM_NEW_BINDING
Linus Torvalds1da177e2005-04-16 15:20:36 -070088extern int cpm_uart_port_map[UART_NR];
Scott Wood7ae87032007-07-17 17:59:06 -050089#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070090extern int cpm_uart_nr;
91extern struct uart_cpm_port cpm_uart_ports[UART_NR];
92
93/* these are located in their respective files */
Scott Wood7ae87032007-07-17 17:59:06 -050094void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd);
Kumar Gala32a56eb2007-05-09 23:44:58 -050095int cpm_uart_init_portdesc(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con);
97void cpm_uart_freebuf(struct uart_cpm_port *pinfo);
98
99void smc1_lineif(struct uart_cpm_port *pinfo);
100void smc2_lineif(struct uart_cpm_port *pinfo);
101void scc1_lineif(struct uart_cpm_port *pinfo);
102void scc2_lineif(struct uart_cpm_port *pinfo);
103void scc3_lineif(struct uart_cpm_port *pinfo);
104void scc4_lineif(struct uart_cpm_port *pinfo);
105
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400106/*
107 virtual to phys transtalion
108*/
109static inline unsigned long cpu2cpm_addr(void* addr, struct uart_cpm_port *pinfo)
110{
111 int offset;
112 u32 val = (u32)addr;
113 /* sane check */
Vitaly Bordug6e1976962006-04-29 23:06:00 +0400114 if (likely((val >= (u32)pinfo->mem_addr)) &&
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400115 (val<((u32)pinfo->mem_addr + pinfo->mem_size))) {
116 offset = val - (u32)pinfo->mem_addr;
117 return pinfo->dma_addr+offset;
118 }
Vitaly Bordug6e1976962006-04-29 23:06:00 +0400119 /* something nasty happened */
120 BUG();
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400121 return 0;
122}
123
124static inline void *cpm2cpu_addr(unsigned long addr, struct uart_cpm_port *pinfo)
125{
126 int offset;
127 u32 val = addr;
128 /* sane check */
Vitaly Bordug6e1976962006-04-29 23:06:00 +0400129 if (likely((val >= pinfo->dma_addr) &&
130 (val<(pinfo->dma_addr + pinfo->mem_size)))) {
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400131 offset = val - (u32)pinfo->dma_addr;
132 return (void*)(pinfo->mem_addr+offset);
133 }
Vitaly Bordug6e1976962006-04-29 23:06:00 +0400134 /* something nasty happened */
135 BUG();
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400136 return 0;
137}
138
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#endif /* CPM_UART_H */