9
0
Fork 0
barebox/lib/driver.c

399 lines
7.8 KiB
C
Raw Normal View History

2007-07-05 16:02:19 +00:00
/*
* driver.c - U-Boot driver model
*
* Copyright (c) 2007 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
2007-11-08 11:01:52 +00:00
/**
* @file
* @brief U-Boot's driver model, and devinfo command
*/
2007-07-05 16:02:12 +00:00
#include <common.h>
#include <command.h>
#include <driver.h>
#include <malloc.h>
#include <linux/ctype.h>
#include <errno.h>
#include <fs.h>
#include <list.h>
2007-07-05 16:02:12 +00:00
LIST_HEAD(device_list);
EXPORT_SYMBOL(device_list);
2007-07-05 16:02:12 +00:00
LIST_HEAD(driver_list);
EXPORT_SYMBOL(driver_list);
2007-07-05 16:02:12 +00:00
static LIST_HEAD(active);
struct device_d *device_by_name(const char *name)
{
struct device_d *dev;
for_each_device(dev) {
if(!strcmp(name, dev->name))
return dev;
}
return NULL;
}
struct device_d *get_device_by_id(const char *id)
2007-07-05 16:02:12 +00:00
{
struct device_d *dev;
2007-07-05 16:02:12 +00:00
for_each_device(dev) {
if(!strcmp(id, dev->id))
return dev;
2007-07-05 16:02:12 +00:00
}
return NULL;
2007-07-05 16:02:12 +00:00
}
2007-10-19 09:06:03 +00:00
int get_free_deviceid(char *id, const char *id_template)
2007-07-05 16:02:12 +00:00
{
int i = 0;
while (1) {
sprintf(id, "%s%d", id_template, i);
if (!get_device_by_id(id))
return 0;
i++;
};
return -1;
}
static int match(struct driver_d *drv, struct device_d *dev)
{
if (dev->driver)
return -1;
2007-10-11 18:56:18 +00:00
dev->driver = drv;
2007-07-05 16:02:12 +00:00
if (dev->bus != drv->bus)
goto err_out;
if (dev->bus->match(dev, drv))
goto err_out;
if (dev->bus->probe(dev))
goto err_out;
list_add(&dev->active, &active);
2007-10-11 18:56:18 +00:00
return 0;
err_out:
dev->driver = NULL;
return -1;
2007-07-05 16:02:12 +00:00
}
int register_device(struct device_d *new_device)
{
struct driver_d *drv;
if(*new_device->id && get_device_by_id(new_device->id)) {
printf("device %s already exists\n", new_device->id);
return -EINVAL;
}
2007-07-05 19:42:34 +00:00
debug ("register_device: %s\n",new_device->name);
2007-07-05 16:02:12 +00:00
if (!new_device->bus) {
// dev_err(new_device, "no bus type associated. Needs fixup\n");
new_device->bus = &platform_bus;
}
list_add_tail(&new_device->list, &device_list);
INIT_LIST_HEAD(&new_device->children);
2007-07-05 16:02:12 +00:00
for_each_driver(drv) {
2007-10-11 18:56:18 +00:00
if (!match(drv, new_device))
break;
}
2007-07-05 16:02:12 +00:00
return 0;
}
2007-10-07 12:27:24 +00:00
EXPORT_SYMBOL(register_device);
2007-07-05 16:02:12 +00:00
int unregister_device(struct device_d *old_dev)
2007-07-05 16:02:12 +00:00
{
debug("unregister_device: %s:%s\n",old_dev->name, old_dev->id);
2007-07-05 16:02:12 +00:00
if (!list_empty(&old_dev->children)) {
errno = -EBUSY;
return errno;
}
if (old_dev->driver)
old_dev->bus->remove(old_dev);
2007-07-05 16:02:12 +00:00
list_del(&old_dev->list);
/* remove device from parents child list */
if (old_dev->parent)
list_del(&old_dev->sibling);
return 0;
2007-07-05 16:02:12 +00:00
}
2007-10-07 12:27:24 +00:00
EXPORT_SYMBOL(unregister_device);
2007-07-05 16:02:12 +00:00
int dev_add_child(struct device_d *dev, struct device_d *child)
{
child->parent = dev;
list_add_tail(&child->sibling, &dev->children);
return 0;
}
EXPORT_SYMBOL(dev_add_child);
2007-07-05 16:02:12 +00:00
struct driver_d *get_driver_by_name(const char *name)
{
struct driver_d *drv;
2007-07-05 16:02:12 +00:00
for_each_driver(drv) {
if(!strcmp(name, drv->name))
return drv;
2007-07-05 16:02:12 +00:00
}
return NULL;
2007-07-05 16:02:12 +00:00
}
static void noinfo(struct device_d *dev)
{
2007-10-11 18:56:18 +00:00
printf("no info available for %s\n", dev->id);
2007-07-05 16:02:12 +00:00
}
static void noshortinfo(struct device_d *dev)
{
}
int register_driver(struct driver_d *drv)
2007-07-05 16:02:12 +00:00
{
2007-10-11 18:56:18 +00:00
struct device_d *dev = NULL;
2007-07-05 16:02:12 +00:00
debug("register_driver: %s\n", drv->name);
2007-07-05 16:02:12 +00:00
if (!drv->bus) {
// pr_err("driver %s has no bus type associated. Needs fixup\n", drv->name);
drv->bus = &platform_bus;
}
list_add_tail(&drv->list, &driver_list);
2007-07-05 16:02:12 +00:00
2007-10-11 18:56:18 +00:00
if (!drv->info)
drv->info = noinfo;
if (!drv->shortinfo)
drv->shortinfo = noshortinfo;
2007-07-05 16:02:12 +00:00
for_each_device(dev)
2007-10-11 18:56:18 +00:00
match(drv, dev);
2007-07-05 16:02:12 +00:00
return 0;
}
2007-10-07 12:27:24 +00:00
EXPORT_SYMBOL(register_driver);
2007-07-05 16:02:12 +00:00
/* Get a device struct from the beginning of the string. Default to mem if no
* device is given, return NULL if a unknown device is given.
* If endp is not NULL, this function stores a pointer to the first character
* after the device name in *endp.
*/
struct device_d *get_device_by_path(const char *path)
2007-07-05 16:02:12 +00:00
{
struct device_d *dev = NULL;
char *npath = normalise_path(path);
if (strncmp(npath, "/dev/", 5))
goto out;
dev = get_device_by_id(npath + 5);
out:
free(npath);
errno = -ENODEV;
return dev;
2007-07-05 16:02:12 +00:00
}
EXPORT_SYMBOL(get_device_by_path);
2007-07-05 16:02:12 +00:00
2007-07-16 08:29:28 +00:00
int dev_protect(struct device_d *dev, size_t count, unsigned long offset, int prot)
{
printf("%s: currently broken\n", __func__);
return -EINVAL;
2007-07-16 08:29:28 +00:00
}
int generic_memmap_ro(struct cdev *cdev, void **map, int flags)
{
if (!cdev->dev)
return -EINVAL;
if (flags & PROT_WRITE)
return -EACCES;
*map = (void *)cdev->dev->map_base;
return 0;
}
int generic_memmap_rw(struct cdev *cdev, void **map, int flags)
{
if (!cdev->dev)
return -EINVAL;
*map = (void *)cdev->dev->map_base;
return 0;
}
2007-07-05 16:02:12 +00:00
int dummy_probe(struct device_d *dev)
{
2007-10-11 18:56:18 +00:00
return 0;
2007-07-05 16:02:12 +00:00
}
EXPORT_SYMBOL(dummy_probe);
2007-07-05 16:02:12 +00:00
static int do_devinfo_subtree(struct device_d *dev, int depth, char edge)
{
struct device_d *child;
int i;
for (i = 0; i < depth; i++)
printf("| ");
if (*dev->id)
printf("%c----%s\n", edge, dev->id);
if (!list_empty(&dev->children)) {
device_for_each_child(dev, child) {
2007-10-19 09:06:03 +00:00
do_devinfo_subtree(child, depth + 1,
list_is_last(&child->sibling,
&dev->children) ? '`' : '|');
}
}
return 0;
}
const char *dev_id(const struct device_d *dev)
{
static char buf[sizeof(unsigned long) * 2];
if (strlen(dev->id))
return dev->id;
sprintf(buf, "0x%08x", dev->map_base);
return buf;
}
void devices_shutdown(void)
{
struct device_d *dev;
list_for_each_entry(dev, &active, active) {
if (dev->driver->remove)
dev->driver->remove(dev);
}
}
#ifdef CONFIG_CMD_DEVINFO
2007-09-28 08:07:26 +00:00
static int do_devinfo ( cmd_tbl_t *cmdtp, int argc, char *argv[])
2007-07-05 16:02:12 +00:00
{
struct device_d *dev;
struct driver_d *drv;
struct param_d *param;
2007-07-05 16:02:12 +00:00
if (argc == 1) {
printf("devices:\n");
2007-07-05 16:02:12 +00:00
for_each_device(dev) {
if (!dev->parent)
do_devinfo_subtree(dev, 0, '|');
}
printf("\ndrivers:\n");
for_each_driver(drv)
printf("%10s\n",drv->name);
} else {
struct device_d *dev = get_device_by_path(argv[1]);
2007-07-05 16:02:12 +00:00
if (!dev) {
printf("no such device: %s\n",argv[1]);
return -1;
}
2007-07-05 16:02:12 +00:00
printf("base : 0x%08x\nsize : 0x%08x\ndriver: %s\n\n",
dev->map_base, dev->size,
dev->driver ?
dev->driver->name : "none");
if (dev->driver)
dev->driver->info(dev);
2007-07-05 16:02:12 +00:00
param = dev->param;
2007-07-05 16:02:12 +00:00
printf("%s\n", param ?
2007-07-05 19:42:34 +00:00
"Parameters:" : "no parameters available");
2007-07-05 16:02:12 +00:00
while (param) {
2007-07-05 16:02:12 +00:00
printf("%16s = %s\n", param->name, param->value);
param = param->next;
}
2007-07-05 16:02:12 +00:00
}
2007-07-05 16:02:12 +00:00
return 0;
2007-07-05 16:02:12 +00:00
}
static const __maybe_unused char cmd_devinfo_help[] =
2007-07-05 16:02:12 +00:00
"Usage: devinfo [DEVICE]\n"
"If called without arguments devinfo shows a summary about known devices and\n"
"drivers. If called with a device path as argument devinfo shows more detailed\n"
2007-11-08 11:01:52 +00:00
"information about this device and its parameters.\n";
2007-07-05 16:02:12 +00:00
U_BOOT_CMD_START(devinfo)
.maxargs = 2,
.cmd = do_devinfo,
.usage = "display info about devices and drivers",
U_BOOT_CMD_HELP(cmd_devinfo_help)
U_BOOT_CMD_END
2007-11-08 11:01:52 +00:00
#endif
2007-11-08 11:01:52 +00:00
/**
* @page devinfo_command devinfo
*
* Usage is: devinfo /dev/\<device>
*
* If called without arguments devinfo shows a summary about known devices and
* drivers. If called with a device path as argument devinfo shows more
* detailed information about this device and its parameters.
*
* Example from an MPC5200 based system:
@verbatim
uboot:/ devinfo /dev/eth0
base : 0x1002b000
size : 0x00000000
driver: fec_mpc5xxx
no info available for eth0
Parameters:
ipaddr = 192.168.23.197
2007-11-08 11:01:52 +00:00
ethaddr = 80:81:82:83:84:86
gateway = 192.168.23.1
netmask = 255.255.255.0
serverip = 192.168.23.2
@endverbatim
*
*/