cpm_uart.h 3.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 *  linux/drivers/serial/cpm_uart.h
 *
 *  Driver for CPM (SCC/SMC) serial ports
 *
 *  Copyright (C) 2004 Freescale Semiconductor, Inc.
 *
8
 *  2006 (c) MontaVista Software, Inc.
K
Kumar Gala 已提交
9
 *	Vitaly Bordug <vbordug@ru.mvista.com>
10 11 12 13 14
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2. This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 *
L
Linus Torvalds 已提交
15 16 17 18
 */
#ifndef CPM_UART_H
#define CPM_UART_H

19 20
#include <linux/platform_device.h>
#include <linux/fs_uart_pd.h>
L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29 30

#if defined(CONFIG_CPM2)
#include "cpm_uart_cpm2.h"
#elif defined(CONFIG_8xx)
#include "cpm_uart_cpm1.h"
#endif

#define SERIAL_CPM_MAJOR	204
#define SERIAL_CPM_MINOR	46

K
Kumar Gala 已提交
31
#define IS_SMC(pinfo)		(pinfo->flags & FLAG_SMC)
L
Linus Torvalds 已提交
32 33 34 35 36
#define IS_DISCARDING(pinfo)	(pinfo->flags & FLAG_DISCARDING)
#define FLAG_DISCARDING	0x00000004	/* when set, don't discard */
#define FLAG_SMC	0x00000002
#define FLAG_CONSOLE	0x00000001

37 38 39 40 41 42
#define UART_SMC1	fsid_smc1_uart
#define UART_SMC2	fsid_smc2_uart
#define UART_SCC1	fsid_scc1_uart
#define UART_SCC2	fsid_scc2_uart
#define UART_SCC3	fsid_scc3_uart
#define UART_SCC4	fsid_scc4_uart
L
Linus Torvalds 已提交
43

44
#define UART_NR		fs_uart_nr
L
Linus Torvalds 已提交
45 46 47 48 49 50

#define RX_NUM_FIFO	4
#define RX_BUF_SIZE	32
#define TX_NUM_FIFO	4
#define TX_BUF_SIZE	32

51 52
#define SCC_WAIT_CLOSING 100

L
Linus Torvalds 已提交
53 54
struct uart_cpm_port {
	struct uart_port	port;
55
	u16			rx_nrfifos;
L
Linus Torvalds 已提交
56
	u16			rx_fifosize;
57
	u16			tx_nrfifos;
L
Linus Torvalds 已提交
58
	u16			tx_fifosize;
S
Scott Wood 已提交
59 60 61 62 63 64 65 66
	smc_t __iomem		*smcp;
	smc_uart_t __iomem	*smcup;
	scc_t __iomem		*sccp;
	scc_uart_t __iomem	*sccup;
	cbd_t __iomem		*rx_bd_base;
	cbd_t __iomem		*rx_cur;
	cbd_t __iomem		*tx_bd_base;
	cbd_t __iomem		*tx_cur;
L
Linus Torvalds 已提交
67 68 69 70 71 72
	unsigned char		*tx_buf;
	unsigned char		*rx_buf;
	u32			flags;
	void			(*set_lineif)(struct uart_cpm_port *);
	u8			brg;
	uint			 dp_addr;
K
Kumar Gala 已提交
73
	void			*mem_addr;
L
Linus Torvalds 已提交
74
	dma_addr_t		 dma_addr;
75
	u32			mem_size;
L
Linus Torvalds 已提交
76 77 78 79 80
	/* helpers */
	int			 baud;
	int			 bits;
	/* Keep track of 'odd' SMC2 wirings */
	int			is_portb;
81
	/* wait on close if needed */
K
Kumar Gala 已提交
82
	int			wait_closing;
83 84
	/* value to combine with opcode to form cpm command */
	u32			command;
L
Linus Torvalds 已提交
85 86
};

87
#ifndef CONFIG_PPC_CPM_NEW_BINDING
L
Linus Torvalds 已提交
88
extern int cpm_uart_port_map[UART_NR];
89
#endif
L
Linus Torvalds 已提交
90 91 92 93
extern int cpm_uart_nr;
extern struct uart_cpm_port cpm_uart_ports[UART_NR];

/* these are located in their respective files */
94
void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd);
95 96 97
void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
				struct device_node *np);
void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram);
98
int cpm_uart_init_portdesc(void);
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107 108
int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con);
void cpm_uart_freebuf(struct uart_cpm_port *pinfo);

void smc1_lineif(struct uart_cpm_port *pinfo);
void smc2_lineif(struct uart_cpm_port *pinfo);
void scc1_lineif(struct uart_cpm_port *pinfo);
void scc2_lineif(struct uart_cpm_port *pinfo);
void scc3_lineif(struct uart_cpm_port *pinfo);
void scc4_lineif(struct uart_cpm_port *pinfo);

109 110 111
/*
   virtual to phys transtalion
*/
S
Scott Wood 已提交
112 113
static inline unsigned long cpu2cpm_addr(void *addr,
                                         struct uart_cpm_port *pinfo)
114 115 116
{
	int offset;
	u32 val = (u32)addr;
S
Scott Wood 已提交
117
	u32 mem = (u32)pinfo->mem_addr;
118
	/* sane check */
S
Scott Wood 已提交
119 120 121
	if (likely(val >= mem && val < mem + pinfo->mem_size)) {
		offset = val - mem;
		return pinfo->dma_addr + offset;
122
	}
123 124
	/* something nasty happened */
	BUG();
125 126 127
	return 0;
}

S
Scott Wood 已提交
128 129
static inline void *cpm2cpu_addr(unsigned long addr,
                                 struct uart_cpm_port *pinfo)
130 131 132
{
	int offset;
	u32 val = addr;
S
Scott Wood 已提交
133
	u32 dma = (u32)pinfo->dma_addr;
134
	/* sane check */
S
Scott Wood 已提交
135 136 137
	if (likely(val >= dma && val < dma + pinfo->mem_size)) {
		offset = val - dma;
		return pinfo->mem_addr + offset;
138
	}
139 140
	/* something nasty happened */
	BUG();
S
Scott Wood 已提交
141
	return NULL;
142 143 144
}


L
Linus Torvalds 已提交
145
#endif /* CPM_UART_H */