mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-31 03:21:32 +00:00
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: Wills Wang <wills.wang@live.com>
This commit is contained in:
parent
5fabf2e7da
commit
773f3b2538
1 changed files with 2 additions and 14 deletions
|
@ -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)
|
||||||
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);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue