blob: 7274b527a3c1737a248cdafb77edb0fd17c14bb9 [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.
Kumar Gala0d844062008-06-12 07:53:48 -05009 * Vitaly Bordug <vbordug@ru.mvista.com>
Vitaly Bordug6e1976962006-04-29 23:06:00 +040010 *
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
Kumar Gala0d844062008-06-12 07:53:48 -050031#define IS_SMC(pinfo) (pinfo->flags & FLAG_SMC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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
Laurent Pinchart7485d262008-07-24 18:36:37 +020053#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070062struct uart_cpm_port {
63 struct uart_port port;
Kumar Gala311c4622005-08-09 10:08:00 -070064 u16 rx_nrfifos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 u16 rx_fifosize;
Kumar Gala311c4622005-08-09 10:08:00 -070066 u16 tx_nrfifos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 u16 tx_fifosize;
Scott Woodc1dcfd92007-07-24 15:53:07 -050068 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned char *tx_buf;
77 unsigned char *rx_buf;
78 u32 flags;
79 void (*set_lineif)(struct uart_cpm_port *);
Laurent Pinchart80776552008-07-28 10:42:16 +020080 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 u8 brg;
82 uint dp_addr;
Kumar Gala0d844062008-06-12 07:53:48 -050083 void *mem_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 dma_addr_t dma_addr;
Vitaly Bordug09b03b62006-04-25 20:26:46 +040085 u32 mem_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 /* helpers */
87 int baud;
88 int bits;
89 /* Keep track of 'odd' SMC2 wirings */
90 int is_portb;
Kumar Gala311c4622005-08-09 10:08:00 -070091 /* wait on close if needed */
Kumar Gala0d844062008-06-12 07:53:48 -050092 int wait_closing;
Scott Wood7ae87032007-07-17 17:59:06 -050093 /* value to combine with opcode to form cpm command */
94 u32 command;
Laurent Pinchart7485d262008-07-24 18:36:37 +020095 int gpios[NUM_GPIOS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098extern int cpm_uart_nr;
99extern struct uart_cpm_port cpm_uart_ports[UART_NR];
100
101/* these are located in their respective files */
Scott Wood7ae87032007-07-17 17:59:06 -0500102void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd);
Laurent Pinchartd464df22008-04-10 17:01:27 +0200103void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
104 struct device_node *np);
105void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram);
Kumar Gala32a56eb2007-05-09 23:44:58 -0500106int cpm_uart_init_portdesc(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con);
108void cpm_uart_freebuf(struct uart_cpm_port *pinfo);
109
110void smc1_lineif(struct uart_cpm_port *pinfo);
111void smc2_lineif(struct uart_cpm_port *pinfo);
112void scc1_lineif(struct uart_cpm_port *pinfo);
113void scc2_lineif(struct uart_cpm_port *pinfo);
114void scc3_lineif(struct uart_cpm_port *pinfo);
115void scc4_lineif(struct uart_cpm_port *pinfo);
116
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400117/*
118 virtual to phys transtalion
119*/
Scott Woodc1dcfd92007-07-24 15:53:07 -0500120static inline unsigned long cpu2cpm_addr(void *addr,
121 struct uart_cpm_port *pinfo)
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400122{
123 int offset;
124 u32 val = (u32)addr;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500125 u32 mem = (u32)pinfo->mem_addr;
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400126 /* sane check */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500127 if (likely(val >= mem && val < mem + pinfo->mem_size)) {
128 offset = val - mem;
129 return pinfo->dma_addr + offset;
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400130 }
Vitaly Bordug6e1976962006-04-29 23:06:00 +0400131 /* something nasty happened */
132 BUG();
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400133 return 0;
134}
135
Scott Woodc1dcfd92007-07-24 15:53:07 -0500136static inline void *cpm2cpu_addr(unsigned long addr,
137 struct uart_cpm_port *pinfo)
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400138{
139 int offset;
140 u32 val = addr;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500141 u32 dma = (u32)pinfo->dma_addr;
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400142 /* sane check */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500143 if (likely(val >= dma && val < dma + pinfo->mem_size)) {
144 offset = val - dma;
145 return pinfo->mem_addr + offset;
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400146 }
Vitaly Bordug6e1976962006-04-29 23:06:00 +0400147 /* something nasty happened */
148 BUG();
Scott Woodc1dcfd92007-07-24 15:53:07 -0500149 return NULL;
Vitaly Bordug09b03b62006-04-25 20:26:46 +0400150}
151
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#endif /* CPM_UART_H */