2 * firmware_sample_firmware_class.c -
4 * Copyright (c) 2003 Manuel Estrada Sainz
6 * NOTE: This is just a probe of concept, if you think that your driver would
7 * be well served by this mechanism please contact me first.
9 * DON'T USE THIS CODE AS IS
13 #include <linux/device.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/timer.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
19 #include <linux/firmware.h>
22 MODULE_AUTHOR("Manuel Estrada Sainz");
23 MODULE_DESCRIPTION("Hackish sample for using firmware class directly");
24 MODULE_LICENSE("GPL");
26 static inline struct class_device
*to_class_dev(struct kobject
*obj
)
28 return container_of(obj
,struct class_device
,kobj
);
31 struct class_device_attribute
*to_class_dev_attr(struct attribute
*_attr
)
33 return container_of(_attr
,struct class_device_attribute
,attr
);
36 int sysfs_create_bin_file(struct kobject
* kobj
, struct bin_attribute
* attr
);
37 int sysfs_remove_bin_file(struct kobject
* kobj
, struct bin_attribute
* attr
);
39 struct firmware_priv
{
40 char fw_id
[FIRMWARE_NAME_MAX
];
45 extern struct class firmware_class
;
47 static ssize_t
firmware_loading_show(struct class_device
*class_dev
, char *buf
)
49 struct firmware_priv
*fw_priv
= class_get_devdata(class_dev
);
50 return sprintf(buf
, "%d\n", fw_priv
->loading
);
52 static ssize_t
firmware_loading_store(struct class_device
*class_dev
,
53 const char *buf
, size_t count
)
55 struct firmware_priv
*fw_priv
= class_get_devdata(class_dev
);
56 int prev_loading
= fw_priv
->loading
;
58 fw_priv
->loading
= simple_strtol(buf
, NULL
, 10);
60 switch(fw_priv
->loading
){
62 /* abort load an panic */
69 /* finish load and get the device back to working
77 static CLASS_DEVICE_ATTR(loading
, 0644,
78 firmware_loading_show
, firmware_loading_store
);
80 static ssize_t
firmware_data_read(struct kobject
*kobj
,
81 char *buffer
, loff_t offset
, size_t count
)
83 struct class_device
*class_dev
= to_class_dev(kobj
);
84 struct firmware_priv
*fw_priv
= class_get_devdata(class_dev
);
86 /* read from the devices firmware memory */
90 static ssize_t
firmware_data_write(struct kobject
*kobj
,
91 char *buffer
, loff_t offset
, size_t count
)
93 struct class_device
*class_dev
= to_class_dev(kobj
);
94 struct firmware_priv
*fw_priv
= class_get_devdata(class_dev
);
96 /* write to the devices firmware memory */
100 static struct bin_attribute firmware_attr_data
= {
101 .attr
= {.name
= "data", .mode
= 0644},
103 .read
= firmware_data_read
,
104 .write
= firmware_data_write
,
106 static int fw_setup_class_device(struct class_device
*class_dev
,
108 struct device
*device
)
111 struct firmware_priv
*fw_priv
= kmalloc(sizeof(struct firmware_priv
),
118 memset(fw_priv
, 0, sizeof(*fw_priv
));
119 memset(class_dev
, 0, sizeof(*class_dev
));
121 strncpy(fw_priv
->fw_id
, fw_name
, FIRMWARE_NAME_MAX
);
122 fw_priv
->fw_id
[FIRMWARE_NAME_MAX
-1] = '\0';
124 strncpy(class_dev
->class_id
, device
->bus_id
, BUS_ID_SIZE
);
125 class_dev
->class_id
[BUS_ID_SIZE
-1] = '\0';
126 class_dev
->dev
= device
;
128 class_dev
->class = &firmware_class
,
129 class_set_devdata(class_dev
, fw_priv
);
130 retval
= class_device_register(class_dev
);
132 printk(KERN_ERR
"%s: class_device_register failed\n",
134 goto error_free_fw_priv
;
137 retval
= sysfs_create_bin_file(&class_dev
->kobj
, &firmware_attr_data
);
139 printk(KERN_ERR
"%s: sysfs_create_bin_file failed\n",
141 goto error_unreg_class_dev
;
144 retval
= class_device_create_file(class_dev
,
145 &class_device_attr_loading
);
147 printk(KERN_ERR
"%s: class_device_create_file failed\n",
149 goto error_remove_data
;
155 sysfs_remove_bin_file(&class_dev
->kobj
, &firmware_attr_data
);
156 error_unreg_class_dev
:
157 class_device_unregister(class_dev
);
163 static void fw_remove_class_device(struct class_device
*class_dev
)
165 struct firmware_priv
*fw_priv
= class_get_devdata(class_dev
);
167 class_device_remove_file(class_dev
, &class_device_attr_loading
);
168 sysfs_remove_bin_file(&class_dev
->kobj
, &firmware_attr_data
);
169 class_device_unregister(class_dev
);
172 static struct class_device
*class_dev
;
174 static struct device my_device
= {
178 static int __init
firmware_sample_init(void)
182 device_initialize(&my_device
);
183 class_dev
= kmalloc(sizeof(struct class_device
), GFP_KERNEL
);
187 error
= fw_setup_class_device(class_dev
, "my_firmware_image",
196 static void __exit
firmware_sample_exit(void)
198 struct firmware_priv
*fw_priv
= class_get_devdata(class_dev
);
199 fw_remove_class_device(class_dev
);
203 module_init(firmware_sample_init
);
204 module_exit(firmware_sample_exit
);