Commit 3e1d333f authored by Dmitry Osipenko's avatar Dmitry Osipenko Committed by Felipe Balbi

usb: phy: tegra: Cleanup error messages

Tegra's PHY driver has a mix of pr_err() and dev_err(), let's switch to
dev_err() and use common errors message formatting across the driver for
consistency.
Signed-off-by: default avatarDmitry Osipenko <digetx@gmail.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 6819e323
...@@ -236,10 +236,14 @@ static void set_phcd(struct tegra_usb_phy *phy, bool enable) ...@@ -236,10 +236,14 @@ static void set_phcd(struct tegra_usb_phy *phy, bool enable)
static int utmip_pad_open(struct tegra_usb_phy *phy) static int utmip_pad_open(struct tegra_usb_phy *phy)
{ {
int err;
phy->pad_clk = devm_clk_get(phy->u_phy.dev, "utmi-pads"); phy->pad_clk = devm_clk_get(phy->u_phy.dev, "utmi-pads");
if (IS_ERR(phy->pad_clk)) { if (IS_ERR(phy->pad_clk)) {
pr_err("%s: can't get utmip pad clock\n", __func__); err = PTR_ERR(phy->pad_clk);
return PTR_ERR(phy->pad_clk); dev_err(phy->u_phy.dev,
"Failed to get UTMIP pad clock: %d\n", err);
return err;
} }
return 0; return 0;
...@@ -282,7 +286,7 @@ static int utmip_pad_power_off(struct tegra_usb_phy *phy) ...@@ -282,7 +286,7 @@ static int utmip_pad_power_off(struct tegra_usb_phy *phy)
void __iomem *base = phy->pad_regs; void __iomem *base = phy->pad_regs;
if (!utmip_pad_count) { if (!utmip_pad_count) {
pr_err("%s: utmip pad already powered off\n", __func__); dev_err(phy->u_phy.dev, "UTMIP pad already powered off\n");
return -EINVAL; return -EINVAL;
} }
...@@ -338,7 +342,8 @@ static void utmi_phy_clk_disable(struct tegra_usb_phy *phy) ...@@ -338,7 +342,8 @@ static void utmi_phy_clk_disable(struct tegra_usb_phy *phy)
set_phcd(phy, true); set_phcd(phy, true);
if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID, 0) < 0) if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID, 0) < 0)
pr_err("%s: timeout waiting for phy to stabilize\n", __func__); dev_err(phy->u_phy.dev,
"Timeout waiting for PHY to stabilize on disable\n");
} }
static void utmi_phy_clk_enable(struct tegra_usb_phy *phy) static void utmi_phy_clk_enable(struct tegra_usb_phy *phy)
...@@ -370,7 +375,8 @@ static void utmi_phy_clk_enable(struct tegra_usb_phy *phy) ...@@ -370,7 +375,8 @@ static void utmi_phy_clk_enable(struct tegra_usb_phy *phy)
if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID, if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID,
USB_PHY_CLK_VALID)) USB_PHY_CLK_VALID))
pr_err("%s: timeout waiting for phy to stabilize\n", __func__); dev_err(phy->u_phy.dev,
"Timeout waiting for PHY to stabilize on enable\n");
} }
static int utmi_phy_power_on(struct tegra_usb_phy *phy) static int utmi_phy_power_on(struct tegra_usb_phy *phy)
...@@ -617,15 +623,15 @@ static int ulpi_phy_power_on(struct tegra_usb_phy *phy) ...@@ -617,15 +623,15 @@ static int ulpi_phy_power_on(struct tegra_usb_phy *phy)
ret = gpio_direction_output(phy->reset_gpio, 0); ret = gpio_direction_output(phy->reset_gpio, 0);
if (ret < 0) { if (ret < 0) {
dev_err(phy->u_phy.dev, "gpio %d not set to 0\n", dev_err(phy->u_phy.dev, "GPIO %d not set to 0: %d\n",
phy->reset_gpio); phy->reset_gpio, ret);
return ret; return ret;
} }
msleep(5); msleep(5);
ret = gpio_direction_output(phy->reset_gpio, 1); ret = gpio_direction_output(phy->reset_gpio, 1);
if (ret < 0) { if (ret < 0) {
dev_err(phy->u_phy.dev, "gpio %d not set to 1\n", dev_err(phy->u_phy.dev, "GPIO %d not set to 1: %d\n",
phy->reset_gpio); phy->reset_gpio, ret);
return ret; return ret;
} }
...@@ -661,13 +667,13 @@ static int ulpi_phy_power_on(struct tegra_usb_phy *phy) ...@@ -661,13 +667,13 @@ static int ulpi_phy_power_on(struct tegra_usb_phy *phy)
/* Fix VbusInvalid due to floating VBUS */ /* Fix VbusInvalid due to floating VBUS */
ret = usb_phy_io_write(phy->ulpi, 0x40, 0x08); ret = usb_phy_io_write(phy->ulpi, 0x40, 0x08);
if (ret) { if (ret) {
pr_err("%s: ulpi write failed\n", __func__); dev_err(phy->u_phy.dev, "ULPI write failed: %d\n", ret);
return ret; return ret;
} }
ret = usb_phy_io_write(phy->ulpi, 0x80, 0x0B); ret = usb_phy_io_write(phy->ulpi, 0x80, 0x0B);
if (ret) { if (ret) {
pr_err("%s: ulpi write failed\n", __func__); dev_err(phy->u_phy.dev, "ULPI write failed: %d\n", ret);
return ret; return ret;
} }
...@@ -728,28 +734,30 @@ static int ulpi_open(struct tegra_usb_phy *phy) ...@@ -728,28 +734,30 @@ static int ulpi_open(struct tegra_usb_phy *phy)
phy->clk = devm_clk_get(phy->u_phy.dev, "ulpi-link"); phy->clk = devm_clk_get(phy->u_phy.dev, "ulpi-link");
if (IS_ERR(phy->clk)) { if (IS_ERR(phy->clk)) {
pr_err("%s: can't get ulpi clock\n", __func__); err = PTR_ERR(phy->clk);
return PTR_ERR(phy->clk); dev_err(phy->u_phy.dev, "Failed to get ULPI clock: %d\n", err);
return err;
} }
err = devm_gpio_request(phy->u_phy.dev, phy->reset_gpio, err = devm_gpio_request(phy->u_phy.dev, phy->reset_gpio,
"ulpi_phy_reset_b"); "ulpi_phy_reset_b");
if (err < 0) { if (err < 0) {
dev_err(phy->u_phy.dev, "request failed for gpio: %d\n", dev_err(phy->u_phy.dev, "Request failed for GPIO %d: %d\n",
phy->reset_gpio); phy->reset_gpio, err);
return err; return err;
} }
err = gpio_direction_output(phy->reset_gpio, 0); err = gpio_direction_output(phy->reset_gpio, 0);
if (err < 0) { if (err < 0) {
dev_err(phy->u_phy.dev, "gpio %d direction not set to output\n", dev_err(phy->u_phy.dev,
phy->reset_gpio); "GPIO %d direction not set to output: %d\n",
phy->reset_gpio, err);
return err; return err;
} }
phy->ulpi = otg_ulpi_create(&ulpi_viewport_access_ops, 0); phy->ulpi = otg_ulpi_create(&ulpi_viewport_access_ops, 0);
if (!phy->ulpi) { if (!phy->ulpi) {
dev_err(phy->u_phy.dev, "otg_ulpi_create returned NULL\n"); dev_err(phy->u_phy.dev, "Failed to create ULPI OTG\n");
err = -ENOMEM; err = -ENOMEM;
return err; return err;
} }
...@@ -766,8 +774,10 @@ static int tegra_usb_phy_init(struct tegra_usb_phy *phy) ...@@ -766,8 +774,10 @@ static int tegra_usb_phy_init(struct tegra_usb_phy *phy)
phy->pll_u = devm_clk_get(phy->u_phy.dev, "pll_u"); phy->pll_u = devm_clk_get(phy->u_phy.dev, "pll_u");
if (IS_ERR(phy->pll_u)) { if (IS_ERR(phy->pll_u)) {
pr_err("Can't get pll_u clock\n"); err = PTR_ERR(phy->pll_u);
return PTR_ERR(phy->pll_u); dev_err(phy->u_phy.dev,
"Failed to get pll_u clock: %d\n", err);
return err;
} }
err = clk_prepare_enable(phy->pll_u); err = clk_prepare_enable(phy->pll_u);
...@@ -782,7 +792,8 @@ static int tegra_usb_phy_init(struct tegra_usb_phy *phy) ...@@ -782,7 +792,8 @@ static int tegra_usb_phy_init(struct tegra_usb_phy *phy)
} }
} }
if (!phy->freq) { if (!phy->freq) {
pr_err("invalid pll_u parent rate %ld\n", parent_rate); dev_err(phy->u_phy.dev, "Invalid pll_u parent rate %ld\n",
parent_rate);
err = -EINVAL; err = -EINVAL;
goto fail; goto fail;
} }
...@@ -791,7 +802,7 @@ static int tegra_usb_phy_init(struct tegra_usb_phy *phy) ...@@ -791,7 +802,7 @@ static int tegra_usb_phy_init(struct tegra_usb_phy *phy)
err = regulator_enable(phy->vbus); err = regulator_enable(phy->vbus);
if (err) { if (err) {
dev_err(phy->u_phy.dev, dev_err(phy->u_phy.dev,
"failed to enable usb vbus regulator: %d\n", "Failed to enable USB VBUS regulator: %d\n",
err); err);
goto fail; goto fail;
} }
...@@ -855,7 +866,8 @@ static int read_utmi_param(struct platform_device *pdev, const char *param, ...@@ -855,7 +866,8 @@ static int read_utmi_param(struct platform_device *pdev, const char *param,
int err = of_property_read_u32(pdev->dev.of_node, param, &value); int err = of_property_read_u32(pdev->dev.of_node, param, &value);
*dest = (u8)value; *dest = (u8)value;
if (err < 0) if (err < 0)
dev_err(&pdev->dev, "Failed to read USB UTMI parameter %s: %d\n", dev_err(&pdev->dev,
"Failed to read USB UTMI parameter %s: %d\n",
param, err); param, err);
return err; return err;
} }
...@@ -871,14 +883,14 @@ static int utmi_phy_probe(struct tegra_usb_phy *tegra_phy, ...@@ -871,14 +883,14 @@ static int utmi_phy_probe(struct tegra_usb_phy *tegra_phy,
res = platform_get_resource(pdev, IORESOURCE_MEM, 1); res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
if (!res) { if (!res) {
dev_err(&pdev->dev, "Failed to get UTMI Pad regs\n"); dev_err(&pdev->dev, "Failed to get UTMI pad regs\n");
return -ENXIO; return -ENXIO;
} }
tegra_phy->pad_regs = devm_ioremap(&pdev->dev, res->start, tegra_phy->pad_regs = devm_ioremap(&pdev->dev, res->start,
resource_size(res)); resource_size(res));
if (!tegra_phy->pad_regs) { if (!tegra_phy->pad_regs) {
dev_err(&pdev->dev, "Failed to remap UTMI Pad regs\n"); dev_err(&pdev->dev, "Failed to remap UTMI pad regs\n");
return -ENOMEM; return -ENOMEM;
} }
...@@ -1020,15 +1032,16 @@ static int tegra_usb_phy_probe(struct platform_device *pdev) ...@@ -1020,15 +1032,16 @@ static int tegra_usb_phy_probe(struct platform_device *pdev)
tegra_phy->reset_gpio = tegra_phy->reset_gpio =
of_get_named_gpio(np, "nvidia,phy-reset-gpio", 0); of_get_named_gpio(np, "nvidia,phy-reset-gpio", 0);
if (!gpio_is_valid(tegra_phy->reset_gpio)) { if (!gpio_is_valid(tegra_phy->reset_gpio)) {
dev_err(&pdev->dev, "invalid gpio: %d\n", dev_err(&pdev->dev,
tegra_phy->reset_gpio); "Invalid GPIO: %d\n", tegra_phy->reset_gpio);
return tegra_phy->reset_gpio; return tegra_phy->reset_gpio;
} }
tegra_phy->config = NULL; tegra_phy->config = NULL;
break; break;
default: default:
dev_err(&pdev->dev, "phy_type is invalid or unsupported\n"); dev_err(&pdev->dev, "phy_type %u is invalid or unsupported\n",
phy_type);
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment