提交 a496e628 编写于 作者: H Huang Shijie 提交者: Greg Kroah-Hartman

serial: imx: distinguish the imx6q uart from the others

We will add the DMA support for the imx uart. For the firmware's limit,
only the imx6 serial chips (including the imx6q, imx6dl, imx6sl) can
support the DMA.

This patch adds the necessary macro and helper to distinguish the
imx6q uart from the other imx uart. Other chips can use the "fsl,imx6q-uart"
to enable the DMA support.

This patch also replaces the check "is_imx21_uart()" with "!is_imx1_uart()".
Signed-off-by: NHuang Shijie <b32955@freescale.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 1cf93e0d
...@@ -186,6 +186,7 @@ ...@@ -186,6 +186,7 @@
enum imx_uart_type { enum imx_uart_type {
IMX1_UART, IMX1_UART,
IMX21_UART, IMX21_UART,
IMX6Q_UART,
}; };
/* device type dependent stuff */ /* device type dependent stuff */
...@@ -231,6 +232,10 @@ static struct imx_uart_data imx_uart_devdata[] = { ...@@ -231,6 +232,10 @@ static struct imx_uart_data imx_uart_devdata[] = {
.uts_reg = IMX21_UTS, .uts_reg = IMX21_UTS,
.devtype = IMX21_UART, .devtype = IMX21_UART,
}, },
[IMX6Q_UART] = {
.uts_reg = IMX21_UTS,
.devtype = IMX6Q_UART,
},
}; };
static struct platform_device_id imx_uart_devtype[] = { static struct platform_device_id imx_uart_devtype[] = {
...@@ -240,6 +245,9 @@ static struct platform_device_id imx_uart_devtype[] = { ...@@ -240,6 +245,9 @@ static struct platform_device_id imx_uart_devtype[] = {
}, { }, {
.name = "imx21-uart", .name = "imx21-uart",
.driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART], .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
}, {
.name = "imx6q-uart",
.driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX6Q_UART],
}, { }, {
/* sentinel */ /* sentinel */
} }
...@@ -247,6 +255,7 @@ static struct platform_device_id imx_uart_devtype[] = { ...@@ -247,6 +255,7 @@ static struct platform_device_id imx_uart_devtype[] = {
MODULE_DEVICE_TABLE(platform, imx_uart_devtype); MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
static struct of_device_id imx_uart_dt_ids[] = { static struct of_device_id imx_uart_dt_ids[] = {
{ .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_UART], },
{ .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], }, { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
{ .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], }, { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
{ /* sentinel */ } { /* sentinel */ }
...@@ -268,6 +277,10 @@ static inline int is_imx21_uart(struct imx_port *sport) ...@@ -268,6 +277,10 @@ static inline int is_imx21_uart(struct imx_port *sport)
return sport->devdata->devtype == IMX21_UART; return sport->devdata->devtype == IMX21_UART;
} }
static inline int is_imx6q_uart(struct imx_port *sport)
{
return sport->devdata->devtype == IMX6Q_UART;
}
/* /*
* Save and restore functions for UCR1, UCR2 and UCR3 registers * Save and restore functions for UCR1, UCR2 and UCR3 registers
*/ */
...@@ -800,7 +813,7 @@ static int imx_startup(struct uart_port *port) ...@@ -800,7 +813,7 @@ static int imx_startup(struct uart_port *port)
} }
} }
if (is_imx21_uart(sport)) { if (!is_imx1_uart(sport)) {
temp = readl(sport->port.membase + UCR3); temp = readl(sport->port.membase + UCR3);
temp |= IMX21_UCR3_RXDMUXSEL; temp |= IMX21_UCR3_RXDMUXSEL;
writel(temp, sport->port.membase + UCR3); writel(temp, sport->port.membase + UCR3);
...@@ -1043,7 +1056,7 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios, ...@@ -1043,7 +1056,7 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios,
writel(num, sport->port.membase + UBIR); writel(num, sport->port.membase + UBIR);
writel(denom, sport->port.membase + UBMR); writel(denom, sport->port.membase + UBMR);
if (is_imx21_uart(sport)) if (!is_imx1_uart(sport))
writel(sport->port.uartclk / div / 1000, writel(sport->port.uartclk / div / 1000,
sport->port.membase + IMX21_ONEMS); sport->port.membase + IMX21_ONEMS);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册