提交 57d3e98f 编写于 作者: J Jagan Teki 提交者: Stefano Babic

serial: mxc: Move cr1 and cr2 write to mxc_serial_setbrg

Control reg write should be part of setbrg for better
buadrate generation, so move cr1 and cr2 write to
mxc_serial_setbrg
Signed-off-by: NJagan Teki <jagan@amarulasolutions.com>
Reviewed-by: NSimon Glass <sjg@chromium.org>
上级 62af03ee
......@@ -162,6 +162,9 @@ static void mxc_serial_setbrg(void)
writel(0xf, &mxc_base->bir);
writel(clk / (2 * gd->baudrate), &mxc_base->bmr);
writel(UCR2_WS | UCR2_IRTS | UCR2_RXEN | UCR2_TXEN | UCR2_SRST,
&mxc_base->cr2);
writel(UCR1_UARTEN, &mxc_base->cr1);
}
static int mxc_serial_getc(void)
......@@ -216,11 +219,6 @@ static int mxc_serial_init(void)
serial_setbrg();
writel(UCR2_WS | UCR2_IRTS | UCR2_RXEN | UCR2_TXEN | UCR2_SRST,
&mxc_base->cr2);
writel(UCR1_UARTEN, &mxc_base->cr1);
return 0;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册