mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 07:24:39 +08:00
fc7a6209d5
The driver core ignores the return value of this callback because there is only little it can do when a device disappears. This is the final bit of a long lasting cleanup quest where several buses were converted to also return void from their remove callback. Additionally some resource leaks were fixed that were caused by drivers returning an error code in the expectation that the driver won't go away. With struct bus_type::remove returning void it's prevented that newly implemented buses return an ignored error code and so don't anticipate wrong expectations for driver authors. Reviewed-by: Tom Rix <trix@redhat.com> (For fpga) Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org> Reviewed-by: Cornelia Huck <cohuck@redhat.com> (For drivers/s390 and drivers/vfio) Acked-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> (For ARM, Amba and related parts) Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Chen-Yu Tsai <wens@csie.org> (for sunxi-rsb) Acked-by: Pali Rohár <pali@kernel.org> Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org> (for media) Acked-by: Hans de Goede <hdegoede@redhat.com> (For drivers/platform) Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Acked-By: Vinod Koul <vkoul@kernel.org> Acked-by: Juergen Gross <jgross@suse.com> (For xen) Acked-by: Lee Jones <lee.jones@linaro.org> (For mfd) Acked-by: Johannes Thumshirn <jth@kernel.org> (For mcb) Acked-by: Johan Hovold <johan@kernel.org> Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> (For slimbus) Acked-by: Kirti Wankhede <kwankhede@nvidia.com> (For vfio) Acked-by: Maximilian Luz <luzmaximilian@gmail.com> Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> (For ulpi and typec) Acked-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com> (For ipack) Acked-by: Geoff Levand <geoff@infradead.org> (For ps3) Acked-by: Yehezkel Bernat <YehezkelShB@gmail.com> (For thunderbolt) Acked-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> (For intel_th) Acked-by: Dominik Brodowski <linux@dominikbrodowski.net> (For pcmcia) Acked-by: Rafael J. Wysocki <rafael@kernel.org> (For ACPI) Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org> (rpmsg and apr) Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> (For intel-ish-hid) Acked-by: Dan Williams <dan.j.williams@intel.com> (For CXL, DAX, and NVDIMM) Acked-by: William Breathitt Gray <vilhelm.gray@gmail.com> (For isa) Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de> (For firewire) Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> (For hid) Acked-by: Thorsten Scherer <t.scherer@eckelmann.de> (For siox) Acked-by: Sven Van Asbroeck <TheSven73@gmail.com> (For anybuss) Acked-by: Ulf Hansson <ulf.hansson@linaro.org> (For MMC) Acked-by: Wolfram Sang <wsa@kernel.org> # for I2C Acked-by: Sudeep Holla <sudeep.holla@arm.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Acked-by: Finn Thain <fthain@linux-m68k.org> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20210713193522.1770306-6-u.kleine-koenig@pengutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
321 lines
7.2 KiB
C
321 lines
7.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* ulpi.c - USB ULPI PHY bus
|
|
*
|
|
* Copyright (C) 2015 Intel Corporation
|
|
*
|
|
* Author: Heikki Krogerus <heikki.krogerus@linux.intel.com>
|
|
*/
|
|
|
|
#include <linux/ulpi/interface.h>
|
|
#include <linux/ulpi/driver.h>
|
|
#include <linux/ulpi/regs.h>
|
|
#include <linux/module.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/acpi.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_device.h>
|
|
#include <linux/clk/clk-conf.h>
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
int ulpi_read(struct ulpi *ulpi, u8 addr)
|
|
{
|
|
return ulpi->ops->read(ulpi->dev.parent, addr);
|
|
}
|
|
EXPORT_SYMBOL_GPL(ulpi_read);
|
|
|
|
int ulpi_write(struct ulpi *ulpi, u8 addr, u8 val)
|
|
{
|
|
return ulpi->ops->write(ulpi->dev.parent, addr, val);
|
|
}
|
|
EXPORT_SYMBOL_GPL(ulpi_write);
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
static int ulpi_match(struct device *dev, struct device_driver *driver)
|
|
{
|
|
struct ulpi_driver *drv = to_ulpi_driver(driver);
|
|
struct ulpi *ulpi = to_ulpi_dev(dev);
|
|
const struct ulpi_device_id *id;
|
|
|
|
/* Some ULPI devices don't have a vendor id so rely on OF match */
|
|
if (ulpi->id.vendor == 0)
|
|
return of_driver_match_device(dev, driver);
|
|
|
|
for (id = drv->id_table; id->vendor; id++)
|
|
if (id->vendor == ulpi->id.vendor &&
|
|
id->product == ulpi->id.product)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ulpi_uevent(struct device *dev, struct kobj_uevent_env *env)
|
|
{
|
|
struct ulpi *ulpi = to_ulpi_dev(dev);
|
|
int ret;
|
|
|
|
ret = of_device_uevent_modalias(dev, env);
|
|
if (ret != -ENODEV)
|
|
return ret;
|
|
|
|
if (add_uevent_var(env, "MODALIAS=ulpi:v%04xp%04x",
|
|
ulpi->id.vendor, ulpi->id.product))
|
|
return -ENOMEM;
|
|
return 0;
|
|
}
|
|
|
|
static int ulpi_probe(struct device *dev)
|
|
{
|
|
struct ulpi_driver *drv = to_ulpi_driver(dev->driver);
|
|
int ret;
|
|
|
|
ret = of_clk_set_defaults(dev->of_node, false);
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
return drv->probe(to_ulpi_dev(dev));
|
|
}
|
|
|
|
static void ulpi_remove(struct device *dev)
|
|
{
|
|
struct ulpi_driver *drv = to_ulpi_driver(dev->driver);
|
|
|
|
if (drv->remove)
|
|
drv->remove(to_ulpi_dev(dev));
|
|
}
|
|
|
|
static struct bus_type ulpi_bus = {
|
|
.name = "ulpi",
|
|
.match = ulpi_match,
|
|
.uevent = ulpi_uevent,
|
|
.probe = ulpi_probe,
|
|
.remove = ulpi_remove,
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
int len;
|
|
struct ulpi *ulpi = to_ulpi_dev(dev);
|
|
|
|
len = of_device_modalias(dev, buf, PAGE_SIZE);
|
|
if (len != -ENODEV)
|
|
return len;
|
|
|
|
return sprintf(buf, "ulpi:v%04xp%04x\n",
|
|
ulpi->id.vendor, ulpi->id.product);
|
|
}
|
|
static DEVICE_ATTR_RO(modalias);
|
|
|
|
static struct attribute *ulpi_dev_attrs[] = {
|
|
&dev_attr_modalias.attr,
|
|
NULL
|
|
};
|
|
|
|
static const struct attribute_group ulpi_dev_attr_group = {
|
|
.attrs = ulpi_dev_attrs,
|
|
};
|
|
|
|
static const struct attribute_group *ulpi_dev_attr_groups[] = {
|
|
&ulpi_dev_attr_group,
|
|
NULL
|
|
};
|
|
|
|
static void ulpi_dev_release(struct device *dev)
|
|
{
|
|
kfree(to_ulpi_dev(dev));
|
|
}
|
|
|
|
static const struct device_type ulpi_dev_type = {
|
|
.name = "ulpi_device",
|
|
.groups = ulpi_dev_attr_groups,
|
|
.release = ulpi_dev_release,
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* __ulpi_register_driver - register a driver with the ULPI bus
|
|
* @drv: driver being registered
|
|
* @module: ends up being THIS_MODULE
|
|
*
|
|
* Registers a driver with the ULPI bus.
|
|
*/
|
|
int __ulpi_register_driver(struct ulpi_driver *drv, struct module *module)
|
|
{
|
|
if (!drv->probe)
|
|
return -EINVAL;
|
|
|
|
drv->driver.owner = module;
|
|
drv->driver.bus = &ulpi_bus;
|
|
|
|
return driver_register(&drv->driver);
|
|
}
|
|
EXPORT_SYMBOL_GPL(__ulpi_register_driver);
|
|
|
|
/**
|
|
* ulpi_unregister_driver - unregister a driver with the ULPI bus
|
|
* @drv: driver to unregister
|
|
*
|
|
* Unregisters a driver with the ULPI bus.
|
|
*/
|
|
void ulpi_unregister_driver(struct ulpi_driver *drv)
|
|
{
|
|
driver_unregister(&drv->driver);
|
|
}
|
|
EXPORT_SYMBOL_GPL(ulpi_unregister_driver);
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
static int ulpi_of_register(struct ulpi *ulpi)
|
|
{
|
|
struct device_node *np = NULL, *child;
|
|
struct device *parent;
|
|
|
|
/* Find a ulpi bus underneath the parent or the grandparent */
|
|
parent = ulpi->dev.parent;
|
|
if (parent->of_node)
|
|
np = of_get_child_by_name(parent->of_node, "ulpi");
|
|
else if (parent->parent && parent->parent->of_node)
|
|
np = of_get_child_by_name(parent->parent->of_node, "ulpi");
|
|
if (!np)
|
|
return 0;
|
|
|
|
child = of_get_next_available_child(np, NULL);
|
|
of_node_put(np);
|
|
if (!child)
|
|
return -EINVAL;
|
|
|
|
ulpi->dev.of_node = child;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ulpi_read_id(struct ulpi *ulpi)
|
|
{
|
|
int ret;
|
|
|
|
/* Test the interface */
|
|
ret = ulpi_write(ulpi, ULPI_SCRATCH, 0xaa);
|
|
if (ret < 0)
|
|
goto err;
|
|
|
|
ret = ulpi_read(ulpi, ULPI_SCRATCH);
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
if (ret != 0xaa)
|
|
goto err;
|
|
|
|
ulpi->id.vendor = ulpi_read(ulpi, ULPI_VENDOR_ID_LOW);
|
|
ulpi->id.vendor |= ulpi_read(ulpi, ULPI_VENDOR_ID_HIGH) << 8;
|
|
|
|
ulpi->id.product = ulpi_read(ulpi, ULPI_PRODUCT_ID_LOW);
|
|
ulpi->id.product |= ulpi_read(ulpi, ULPI_PRODUCT_ID_HIGH) << 8;
|
|
|
|
/* Some ULPI devices don't have a vendor id so rely on OF match */
|
|
if (ulpi->id.vendor == 0)
|
|
goto err;
|
|
|
|
request_module("ulpi:v%04xp%04x", ulpi->id.vendor, ulpi->id.product);
|
|
return 0;
|
|
err:
|
|
of_device_request_module(&ulpi->dev);
|
|
return 0;
|
|
}
|
|
|
|
static int ulpi_register(struct device *dev, struct ulpi *ulpi)
|
|
{
|
|
int ret;
|
|
|
|
ulpi->dev.parent = dev; /* needed early for ops */
|
|
ulpi->dev.bus = &ulpi_bus;
|
|
ulpi->dev.type = &ulpi_dev_type;
|
|
dev_set_name(&ulpi->dev, "%s.ulpi", dev_name(dev));
|
|
|
|
ACPI_COMPANION_SET(&ulpi->dev, ACPI_COMPANION(dev));
|
|
|
|
ret = ulpi_of_register(ulpi);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = ulpi_read_id(ulpi);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = device_register(&ulpi->dev);
|
|
if (ret)
|
|
return ret;
|
|
|
|
dev_dbg(&ulpi->dev, "registered ULPI PHY: vendor %04x, product %04x\n",
|
|
ulpi->id.vendor, ulpi->id.product);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* ulpi_register_interface - instantiate new ULPI device
|
|
* @dev: USB controller's device interface
|
|
* @ops: ULPI register access
|
|
*
|
|
* Allocates and registers a ULPI device and an interface for it. Called from
|
|
* the USB controller that provides the ULPI interface.
|
|
*/
|
|
struct ulpi *ulpi_register_interface(struct device *dev,
|
|
const struct ulpi_ops *ops)
|
|
{
|
|
struct ulpi *ulpi;
|
|
int ret;
|
|
|
|
ulpi = kzalloc(sizeof(*ulpi), GFP_KERNEL);
|
|
if (!ulpi)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
ulpi->ops = ops;
|
|
|
|
ret = ulpi_register(dev, ulpi);
|
|
if (ret) {
|
|
kfree(ulpi);
|
|
return ERR_PTR(ret);
|
|
}
|
|
|
|
return ulpi;
|
|
}
|
|
EXPORT_SYMBOL_GPL(ulpi_register_interface);
|
|
|
|
/**
|
|
* ulpi_unregister_interface - unregister ULPI interface
|
|
* @ulpi: struct ulpi_interface
|
|
*
|
|
* Unregisters a ULPI device and it's interface that was created with
|
|
* ulpi_create_interface().
|
|
*/
|
|
void ulpi_unregister_interface(struct ulpi *ulpi)
|
|
{
|
|
of_node_put(ulpi->dev.of_node);
|
|
device_unregister(&ulpi->dev);
|
|
}
|
|
EXPORT_SYMBOL_GPL(ulpi_unregister_interface);
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
static int __init ulpi_init(void)
|
|
{
|
|
return bus_register(&ulpi_bus);
|
|
}
|
|
subsys_initcall(ulpi_init);
|
|
|
|
static void __exit ulpi_exit(void)
|
|
{
|
|
bus_unregister(&ulpi_bus);
|
|
}
|
|
module_exit(ulpi_exit);
|
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("USB ULPI PHY bus");
|