9
0
Fork 0

amba: add oftree probe support

move ARM_AMBA Kconfig to drivers/amba/Kconfig

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2013-02-12 12:09:39 +01:00 committed by Sascha Hauer
parent afab6ac783
commit 8428a8c6e3
5 changed files with 58 additions and 12 deletions

View File

@ -7,9 +7,6 @@ config ARM
select HAVE_IMAGE_COMPRESSION
default y
config ARM_AMBA
bool
config ARM_LINUX
bool
default y

View File

@ -1,5 +1,6 @@
menu "Drivers"
source "drivers/amba/Kconfig"
source "drivers/serial/Kconfig"
source "drivers/net/Kconfig"
source "drivers/spi/Kconfig"

2
drivers/amba/Kconfig Normal file
View File

@ -0,0 +1,2 @@
config ARM_AMBA
bool

View File

@ -212,6 +212,7 @@ struct amba_device *amba_device_alloc(const char *name, int id, resource_size_t
dev->res.start = base;
dev->res.end = base + size - 1;
dev->res.flags = IORESOURCE_MEM;
dev->dev.resource = &dev->res;
return dev;
}

View File

@ -26,6 +26,7 @@
#include <memory.h>
#include <sizes.h>
#include <linux/ctype.h>
#include <linux/amba/bus.h>
/**
* struct alias_prop - Alias property in 'aliases' node
@ -641,18 +642,44 @@ void of_delete_property(struct property *pp)
free(pp);
}
static struct device_d *add_of_device(struct device_node *node)
static struct device_d *add_of_amba_device(struct device_node *node)
{
struct amba_device *dev;
char *name, *at;
dev = xzalloc(sizeof(*dev));
name = xstrdup(node->name);
at = strchr(name, '@');
if (at) {
*at = 0;
snprintf(dev->dev.name, MAX_DRIVER_NAME, "%s.%s", at + 1, name);
} else {
strncpy(dev->dev.name, node->name, MAX_DRIVER_NAME);
}
dev->dev.id = DEVICE_ID_SINGLE;
memcpy(&dev->res, &node->resource[0], sizeof(struct resource));
dev->dev.resource = node->resource;
dev->dev.num_resources = 1;
dev->dev.device_node = node;
node->device = &dev->dev;
of_property_read_u32(node, "arm,primecell-periphid", &dev->periphid);
debug("register device 0x%08x\n", node->resource[0].start);
amba_device_add(dev);
free(name);
return &dev->dev;
}
static struct device_d *add_of_platform_device(struct device_node *node)
{
struct device_d *dev;
char *name, *at;
const struct property *cp;
if (of_node_disabled(node))
return NULL;
cp = of_get_property(node, "compatible", NULL);
if (!cp)
return NULL;
dev = xzalloc(sizeof(*dev));
@ -679,6 +706,24 @@ static struct device_d *add_of_device(struct device_node *node)
return dev;
}
static struct device_d *add_of_device(struct device_node *node)
{
const struct property *cp;
if (of_node_disabled(node))
return NULL;
cp = of_get_property(node, "compatible", NULL);
if (!cp)
return NULL;
if (IS_ENABLED(CONFIG_ARM_AMBA) &&
of_device_is_compatible(node, "arm,primecell") == 1)
return add_of_amba_device(node);
else
return add_of_platform_device(node);
}
EXPORT_SYMBOL(add_of_device);
u64 dt_mem_next_cell(int s, const __be32 **cellp)