Skip to content

Commit

Permalink
m68k: amiga - Zorro bus modalias support
Browse files Browse the repository at this point in the history
Add Amiga Zorro bus modalias and uevent support

Signed-off-by: Geert Uytterhoeven <[email protected]>
  • Loading branch information
geertu committed May 17, 2010
1 parent 0b7f1a7 commit bf54a2b
Show file tree
Hide file tree
Showing 12 changed files with 66 additions and 12 deletions.
1 change: 1 addition & 0 deletions drivers/net/a2065.c
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@ static struct zorro_device_id a2065_zorro_tbl[] __devinitdata = {
{ ZORRO_PROD_AMERISTAR_A2065 },
{ 0 }
};
MODULE_DEVICE_TABLE(zorro, a2065_zorro_tbl);

static struct zorro_driver a2065_driver = {
.name = "a2065",
Expand Down
1 change: 1 addition & 0 deletions drivers/net/ariadne.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ static struct zorro_device_id ariadne_zorro_tbl[] __devinitdata = {
{ ZORRO_PROD_VILLAGE_TRONIC_ARIADNE },
{ 0 }
};
MODULE_DEVICE_TABLE(zorro, ariadne_zorro_tbl);

static struct zorro_driver ariadne_driver = {
.name = "ariadne",
Expand Down
1 change: 1 addition & 0 deletions drivers/net/hydra.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ static struct zorro_device_id hydra_zorro_tbl[] __devinitdata = {
{ ZORRO_PROD_HYDRA_SYSTEMS_AMIGANET },
{ 0 }
};
MODULE_DEVICE_TABLE(zorro, hydra_zorro_tbl);

static struct zorro_driver hydra_driver = {
.name = "hydra",
Expand Down
1 change: 1 addition & 0 deletions drivers/net/zorro8390.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ static struct zorro_device_id zorro8390_zorro_tbl[] __devinitdata = {
{ ZORRO_PROD_INDIVIDUAL_COMPUTERS_X_SURF, },
{ 0 }
};
MODULE_DEVICE_TABLE(zorro, zorro8390_zorro_tbl);

static struct zorro_driver zorro8390_driver = {
.name = "zorro8390",
Expand Down
1 change: 1 addition & 0 deletions drivers/scsi/zorro7xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ static struct zorro_device_id zorro7xx_zorro_tbl[] __devinitdata = {
},
{ 0 }
};
MODULE_DEVICE_TABLE(zorro, zorro7xx_zorro_tbl);

static int __devinit zorro7xx_init_one(struct zorro_dev *z,
const struct zorro_device_id *ent)
Expand Down
1 change: 1 addition & 0 deletions drivers/video/cirrusfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ static const struct zorro_device_id cirrusfb_zorro_table[] = {
},
{ 0 }
};
MODULE_DEVICE_TABLE(zorro, cirrusfb_zorro_table);

static const struct {
zorro_id id2;
Expand Down
1 change: 1 addition & 0 deletions drivers/video/fm2fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ static struct zorro_device_id fm2fb_devices[] __devinitdata = {
{ ZORRO_PROD_HELFRICH_RAINBOW_II },
{ 0 }
};
MODULE_DEVICE_TABLE(zorro, fm2fb_devices);

static struct zorro_driver fm2fb_driver = {
.name = "fm2fb",
Expand Down
24 changes: 24 additions & 0 deletions drivers/zorro/zorro-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,34 @@ static int zorro_bus_match(struct device *dev, struct device_driver *drv)
return 0;
}

static int zorro_uevent(struct device *dev, struct kobj_uevent_env *env)
{
#ifdef CONFIG_HOTPLUG
struct zorro_dev *z;

if (!dev)
return -ENODEV;

z = to_zorro_dev(dev);
if (!z)
return -ENODEV;

if (add_uevent_var(env, "ZORRO_ID=%08X", z->id) ||
add_uevent_var(env, "ZORRO_SLOT_NAME=%s", dev_name(dev)) ||
add_uevent_var(env, "ZORRO_SLOT_ADDR=%04X", z->slotaddr) ||
add_uevent_var(env, "MODALIAS=" ZORRO_DEVICE_MODALIAS_FMT, z->id))
return -ENOMEM;

return 0;
#else /* !CONFIG_HOTPLUG */
return -ENODEV;
#endif /* !CONFIG_HOTPLUG */
}

struct bus_type zorro_bus_type = {
.name = "zorro",
.match = zorro_bus_match,
.uevent = zorro_uevent,
.probe = zorro_device_probe,
.remove = zorro_device_remove,
};
Expand Down
11 changes: 11 additions & 0 deletions drivers/zorro/zorro-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@ static struct bin_attribute zorro_config_attr = {
.read = zorro_read_config,
};

static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
char *buf)
{
struct zorro_dev *z = to_zorro_dev(dev);

return sprintf(buf, ZORRO_DEVICE_MODALIAS_FMT "\n", z->id);
}

static DEVICE_ATTR(modalias, S_IRUGO, modalias_show, NULL);

int zorro_create_sysfs_dev_files(struct zorro_dev *z)
{
struct device *dev = &z->dev;
Expand All @@ -89,6 +99,7 @@ int zorro_create_sysfs_dev_files(struct zorro_dev *z)
(error = device_create_file(dev, &dev_attr_slotaddr)) ||
(error = device_create_file(dev, &dev_attr_slotsize)) ||
(error = device_create_file(dev, &dev_attr_resource)) ||
(error = device_create_file(dev, &dev_attr_modalias)) ||
(error = sysfs_create_bin_file(&dev->kobj, &zorro_config_attr)))
return error;

Expand Down
9 changes: 9 additions & 0 deletions include/linux/mod_devicetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -474,4 +474,13 @@ struct platform_device_id {
__attribute__((aligned(sizeof(kernel_ulong_t))));
};

struct zorro_device_id {
__u32 id; /* Device ID or ZORRO_WILDCARD */
kernel_ulong_t driver_data; /* Data private to the driver */
};

#define ZORRO_WILDCARD (0xffffffff) /* not official */

#define ZORRO_DEVICE_MODALIAS_FMT "zorro:i%08X"

#endif /* LINUX_MOD_DEVICETABLE_H */
13 changes: 1 addition & 12 deletions include/linux/zorro.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@
typedef __u32 zorro_id;


#define ZORRO_WILDCARD (0xffffffff) /* not official */

/* Include the ID list */
#include <linux/zorro_ids.h>

Expand Down Expand Up @@ -116,6 +114,7 @@ struct ConfigDev {

#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/mod_devicetable.h>

#include <asm/zorro.h>

Expand Down Expand Up @@ -154,16 +153,6 @@ extern struct zorro_bus zorro_bus; /* single Zorro bus */
extern struct bus_type zorro_bus_type;


/*
* Zorro device IDs
*/

struct zorro_device_id {
zorro_id id; /* Device ID or ZORRO_WILDCARD */
unsigned long driver_data; /* Data private to the driver */
};


/*
* Zorro device drivers
*/
Expand Down
14 changes: 14 additions & 0 deletions scripts/mod/file2alias.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,16 @@ static int do_platform_entry(const char *filename,
return 1;
}

/* Looks like: zorro:iN. */
static int do_zorro_entry(const char *filename, struct zorro_device_id *id,
char *alias)
{
id->id = TO_NATIVE(id->id);
strcpy(alias, "zorro:");
ADD(alias, "i", id->id != ZORRO_WILDCARD, id->id);
return 1;
}

/* Ignore any prefix, eg. some architectures prepend _ */
static inline int sym_is(const char *symbol, const char *name)
{
Expand Down Expand Up @@ -943,6 +953,10 @@ void handle_moddevtable(struct module *mod, struct elf_info *info,
do_table(symval, sym->st_size,
sizeof(struct platform_device_id), "platform",
do_platform_entry, mod);
else if (sym_is(symname, "__mod_zorro_device_table"))
do_table(symval, sym->st_size,
sizeof(struct zorro_device_id), "zorro",
do_zorro_entry, mod);
free(zeros);
}

Expand Down

0 comments on commit bf54a2b

Please sign in to comment.