greybus: endo: Create modules after validating Endo ID

We already have code to parse Endo ID, lets use it to create modules at
run time instead of creating them from a static array.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Viresh Kumar 2015-05-08 12:58:51 +05:30 committed by Greg Kroah-Hartman
parent 4f4cc1bf07
commit 51e93aea65
4 changed files with 66 additions and 57 deletions

View file

@ -350,45 +350,43 @@ u8 endo_get_module_id(struct gb_endo *endo, u8 interface_id)
} }
/* /*
* Endo "types" have different module locations, these are tables based on those * Creates all possible modules for the Endo.
* types that list the module ids for the different locations.
* *
* List must end with 0x00 in order to properly terminate the list. * We try to create modules for all possible interface IDs. If a module is
* already created, we skip creating it again with the help of prev_module_id.
*/ */
static u8 endo_4755[] = {
0x01,
0x03,
0x05,
0x06,
0x07,
0x08,
0x0a,
0x0c,
0x0d,
0x0e,
0x00,
};
static int create_modules(struct gb_endo *endo) static int create_modules(struct gb_endo *endo)
{ {
struct gb_module *module; struct gb_module *module;
u8 *endo_modules; int prev_module_id = 0;
int i; int interface_id;
int module_id;
int interfaces;
/* Depending on the endo id, create a bunch of different modules */ /*
switch (endo->id) { * Total number of interfaces:
case 0x4755: * - Front: 4
endo_modules = &endo_4755[0]; * - Back:
break; * - Left: max_ribs + 1
default: * - Right: max_ribs + 1
dev_err(&endo->dev, "Unknown endo id 0x%04x, aborting!", */
endo->id); interfaces = 4 + (endo->layout.max_ribs + 1) * 2;
return -EINVAL;
}
for (i = 0; endo_modules[i] != 0x00; ++i) { /* Find module corresponding to each interface */
module = gb_module_create(&endo->dev, endo_modules[i]); for (interface_id = 1; interface_id <= interfaces; interface_id++) {
module_id = endo_get_module_id(endo, interface_id);
if (WARN_ON(!module_id))
continue;
/* Skip already created modules */
if (module_id == prev_module_id)
continue;
prev_module_id = module_id;
/* New module, create it */
module = gb_module_create(&endo->dev, module_id);
if (!module) if (!module)
return -EINVAL; return -EINVAL;
} }
@ -396,15 +394,11 @@ static int create_modules(struct gb_endo *endo)
return 0; return 0;
} }
struct gb_endo *gb_endo_create(struct greybus_host_device *hd) static int gb_endo_register(struct greybus_host_device *hd,
struct gb_endo *endo)
{ {
struct gb_endo *endo;
int retval; int retval;
endo = kzalloc(sizeof(*endo), GFP_KERNEL);
if (!endo)
return NULL;
endo->dev.parent = hd->parent; endo->dev.parent = hd->parent;
endo->dev.bus = &greybus_bus_type; endo->dev.bus = &greybus_bus_type;
endo->dev.type = &greybus_endo_type; endo->dev.type = &greybus_endo_type;
@ -412,12 +406,11 @@ struct gb_endo *gb_endo_create(struct greybus_host_device *hd)
endo->dev.dma_mask = hd->parent->dma_mask; endo->dev.dma_mask = hd->parent->dma_mask;
device_initialize(&endo->dev); device_initialize(&endo->dev);
// FIXME - determine endo "id" from the SVC // FIXME
// Also get the version and serial number from the SVC, right now we are // Get the version and serial number from the SVC, right now we are
// using "fake" numbers. // using "fake" numbers.
strcpy(&endo->svc.serial_number[0], "042"); strcpy(&endo->svc.serial_number[0], "042");
strcpy(&endo->svc.version[0], "0.0"); strcpy(&endo->svc.version[0], "0.0");
endo->id = 0x4755;
dev_set_name(&endo->dev, "endo-0x%04x", endo->id); dev_set_name(&endo->dev, "endo-0x%04x", endo->id);
retval = device_add(&endo->dev); retval = device_add(&endo->dev);
@ -425,10 +418,32 @@ struct gb_endo *gb_endo_create(struct greybus_host_device *hd)
dev_err(hd->parent, "failed to add endo device of id 0x%04x\n", dev_err(hd->parent, "failed to add endo device of id 0x%04x\n",
endo->id); endo->id);
put_device(&endo->dev); put_device(&endo->dev);
kfree(endo);
return NULL;
} }
return retval;
}
struct gb_endo *gb_endo_create(struct greybus_host_device *hd)
{
struct gb_endo *endo;
int retval;
u16 endo_id = 0x4755; // FIXME - get endo "ID" from the SVC
endo = kzalloc(sizeof(*endo), GFP_KERNEL);
if (!endo)
return NULL;
/* First check if the value supplied is a valid endo id */
if (gb_validate_endo_id(hd, &endo->layout, endo_id))
goto free_endo;
endo->id = endo_id;
/* Register Endo device */
if (gb_endo_register(hd, endo))
goto free_endo;
/* Create modules/interfaces */
retval = create_modules(endo); retval = create_modules(endo);
if (retval) { if (retval) {
gb_endo_remove(endo); gb_endo_remove(endo);
@ -436,6 +451,10 @@ struct gb_endo *gb_endo_create(struct greybus_host_device *hd)
} }
return endo; return endo;
free_endo:
kfree(endo);
return NULL;
} }
void gb_endo_remove(struct gb_endo *endo) void gb_endo_remove(struct gb_endo *endo)

View file

@ -92,7 +92,7 @@ static struct gb_interface *gb_interface_create(struct greybus_host_device *hd,
return NULL; return NULL;
} }
module = gb_module_find(hd, get_module_id(interface_id)); module = gb_module_find(hd, endo_get_module_id(hd->endo, interface_id));
if (!module) if (!module)
return NULL; return NULL;

View file

@ -83,17 +83,6 @@ struct device_type greybus_module_type = {
.release = greybus_module_release, .release = greybus_module_release,
}; };
u8 get_module_id(u8 interface_id)
{
/*
* FIXME:
*
* We should be able to find it from Endo ID passed during greybus
* control operation, while setting up AP.
*/
return interface_id;
}
struct module_find { struct module_find {
struct gb_endo *endo; struct gb_endo *endo;
u8 module_id; u8 module_id;
@ -125,6 +114,9 @@ struct gb_module *gb_module_find(struct greybus_host_device *hd, u8 module_id)
struct gb_module *module = NULL; struct gb_module *module = NULL;
struct module_find find; struct module_find find;
if (!module_id)
return NULL;
find.module_id = module_id; find.module_id = module_id;
find.endo = hd->endo; find.endo = hd->endo;

View file

@ -23,6 +23,4 @@ struct gb_module *gb_module_find(struct greybus_host_device *hd, u8 module_id);
struct gb_module *gb_module_create(struct device *parent, u8 module_id); struct gb_module *gb_module_create(struct device *parent, u8 module_id);
void gb_module_remove_all(struct gb_endo *endo); void gb_module_remove_all(struct gb_endo *endo);
u8 get_module_id(u8 interface_id);
#endif /* __MODULE_H */ #endif /* __MODULE_H */