2 * NXP (Philips) SCC+++(SCN+++) serial driver
4 * Copyright (C) 2012 Alexander Shiyan <shc_work@mail.ru>
6 * Based on sc26xx.c, by Thomas Bogendörfer (tsbogend@alpha.franken.de)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #ifndef _PLATFORM_DATA_SERIAL_SCCNXP_H_
15 #define _PLATFORM_DATA_SERIAL_SCCNXP_H_
17 #define SCCNXP_MAX_UARTS 2
39 #define DTR_OP 0 /* DTR */
40 #define RTS_OP 4 /* RTS */
41 #define DSR_IP 8 /* DSR */
42 #define CTS_IP 12 /* CTS */
43 #define DCD_IP 16 /* DCD */
44 #define RNG_IP 20 /* RNG */
46 #define DIR_OP 24 /* Special signal for control RS-485.
47 * Goes high when transmit,
51 /* Routing control signal 'sig' to line 'line' */
52 #define MCTRL_SIG(sig, line) ((line) << (sig))
55 * Example board initialization data:
57 * static struct resource sc2892_resources[] = {
58 * DEFINE_RES_MEM(UART_PHYS_START, 0x10),
59 * DEFINE_RES_IRQ(IRQ_EXT2),
62 * static struct sccnxp_pdata sc2892_info = {
63 * .mctrl_cfg[0] = MCTRL_SIG(DIR_OP, LINE_OP0),
64 * .mctrl_cfg[1] = MCTRL_SIG(DIR_OP, LINE_OP1),
67 * static struct platform_device sc2892 = {
70 * .resource = sc2892_resources,
71 * .num_resources = ARRAY_SIZE(sc2892_resources),
73 * .platform_data = &sc2892_info,
78 /* SCCNXP platform data structure */
80 /* Shift for A0 line */
82 /* Modem control lines configuration */
83 const u32 mctrl_cfg
[SCCNXP_MAX_UARTS
];
84 /* Timer value for polling mode (usecs) */
85 const unsigned int poll_time_us
;