Skip to content
Snippets Groups Projects
Commit 773f3b25 authored by Wills Wang's avatar Wills Wang Committed by Daniel Schwierzeck
Browse files

ar933x: serial: Remove the explicit pinctrl setting


The correct pinctrl is handled automatically so we don't need to do it in
the driver.

Signed-off-by: default avatarWills Wang <wills.wang@live.com>
parent 5fabf2e7
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ struct ar933x_serial_priv { ...@@ -38,6 +38,7 @@ struct ar933x_serial_priv {
}; };
/* /*
* Baudrate algorithm come from Linux/drivers/tty/serial/ar933x_uart.c
* baudrate = (clk / (scale + 1)) * (step * (1 / 2^17)) * baudrate = (clk / (scale + 1)) * (step * (1 / 2^17))
*/ */
static u32 ar933x_serial_get_baud(u32 clk, u32 scale, u32 step) static u32 ar933x_serial_get_baud(u32 clk, u32 scale, u32 step)
...@@ -145,27 +146,14 @@ static int ar933x_serial_pending(struct udevice *dev, bool input) ...@@ -145,27 +146,14 @@ static int ar933x_serial_pending(struct udevice *dev, bool input)
static int ar933x_serial_probe(struct udevice *dev) static int ar933x_serial_probe(struct udevice *dev)
{ {
struct ar933x_serial_priv *priv = dev_get_priv(dev); struct ar933x_serial_priv *priv = dev_get_priv(dev);
struct udevice *pinctrl;
fdt_addr_t addr; fdt_addr_t addr;
u32 val; u32 val;
int ret;
ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
if (ret)
return ret;
ret = pinctrl_get_periph_id(pinctrl, dev);
if (ret < 0)
return ret;
ret = pinctrl_request(pinctrl, ret, 0);
if (ret < 0)
return ret;
addr = dev_get_addr(dev); addr = dev_get_addr(dev);
if (addr == FDT_ADDR_T_NONE) if (addr == FDT_ADDR_T_NONE)
return -EINVAL; return -EINVAL;
priv->regs = map_physmem(addr, priv->regs = map_physmem(addr, AR933X_UART_SIZE,
AR933X_UART_SIZE,
MAP_NOCACHE); MAP_NOCACHE);
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment