1 // SPDX-License-Identifier: GPL-2.0-only
3 * Kontron PLD MFD core driver
5 * Copyright (c) 2010-2013 Kontron Europe GmbH
9 #include <linux/platform_device.h>
10 #include <linux/mfd/core.h>
11 #include <linux/mfd/kempld.h>
12 #include <linux/module.h>
13 #include <linux/dmi.h>
15 #include <linux/delay.h>
18 static char force_device_id[MAX_ID_LEN + 1] = "";
19 module_param_string(force_device_id, force_device_id,
20 sizeof(force_device_id), 0);
21 MODULE_PARM_DESC(force_device_id, "Override detected product");
24 * Get hardware mutex to block firmware from accessing the pld.
25 * It is possible for the firmware may hold the mutex for an extended length of
26 * time. This function will block until access has been granted.
28 static void kempld_get_hardware_mutex(struct kempld_device_data *pld)
30 /* The mutex bit will read 1 until access has been granted */
31 while (ioread8(pld->io_index) & KEMPLD_MUTEX_KEY)
32 usleep_range(1000, 3000);
35 static void kempld_release_hardware_mutex(struct kempld_device_data *pld)
37 /* The harware mutex is released when 1 is written to the mutex bit. */
38 iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
41 static int kempld_get_info_generic(struct kempld_device_data *pld)
46 kempld_get_mutex(pld);
48 version = kempld_read16(pld, KEMPLD_VERSION);
49 spec = kempld_read8(pld, KEMPLD_SPEC);
50 pld->info.buildnr = kempld_read16(pld, KEMPLD_BUILDNR);
52 pld->info.minor = KEMPLD_VERSION_GET_MINOR(version);
53 pld->info.major = KEMPLD_VERSION_GET_MAJOR(version);
54 pld->info.number = KEMPLD_VERSION_GET_NUMBER(version);
55 pld->info.type = KEMPLD_VERSION_GET_TYPE(version);
58 pld->info.spec_minor = 0;
59 pld->info.spec_major = 1;
61 pld->info.spec_minor = KEMPLD_SPEC_GET_MINOR(spec);
62 pld->info.spec_major = KEMPLD_SPEC_GET_MAJOR(spec);
65 if (pld->info.spec_major > 0)
66 pld->feature_mask = kempld_read16(pld, KEMPLD_FEATURE);
68 pld->feature_mask = 0;
70 kempld_release_mutex(pld);
82 static const struct mfd_cell kempld_devs[] = {
90 .name = "kempld-gpio",
93 .name = "kempld-uart",
97 #define KEMPLD_MAX_DEVS ARRAY_SIZE(kempld_devs)
99 static int kempld_register_cells_generic(struct kempld_device_data *pld)
101 struct mfd_cell devs[KEMPLD_MAX_DEVS];
104 if (pld->feature_mask & KEMPLD_FEATURE_BIT_I2C)
105 devs[i++] = kempld_devs[KEMPLD_I2C];
107 if (pld->feature_mask & KEMPLD_FEATURE_BIT_WATCHDOG)
108 devs[i++] = kempld_devs[KEMPLD_WDT];
110 if (pld->feature_mask & KEMPLD_FEATURE_BIT_GPIO)
111 devs[i++] = kempld_devs[KEMPLD_GPIO];
113 if (pld->feature_mask & KEMPLD_FEATURE_MASK_UART)
114 devs[i++] = kempld_devs[KEMPLD_UART];
116 return mfd_add_devices(pld->dev, -1, devs, i, NULL, 0, NULL);
119 static struct resource kempld_ioresource = {
120 .start = KEMPLD_IOINDEX,
121 .end = KEMPLD_IODATA,
122 .flags = IORESOURCE_IO,
125 static const struct kempld_platform_data kempld_platform_data_generic = {
126 .pld_clock = KEMPLD_CLK,
127 .ioresource = &kempld_ioresource,
128 .get_hardware_mutex = kempld_get_hardware_mutex,
129 .release_hardware_mutex = kempld_release_hardware_mutex,
130 .get_info = kempld_get_info_generic,
131 .register_cells = kempld_register_cells_generic,
134 static struct platform_device *kempld_pdev;
136 static int kempld_create_platform_device(const struct dmi_system_id *id)
138 const struct kempld_platform_data *pdata = id->driver_data;
141 kempld_pdev = platform_device_alloc("kempld", -1);
145 ret = platform_device_add_data(kempld_pdev, pdata, sizeof(*pdata));
149 ret = platform_device_add_resources(kempld_pdev, pdata->ioresource, 1);
153 ret = platform_device_add(kempld_pdev);
159 platform_device_put(kempld_pdev);
164 * kempld_read8 - read 8 bit register
165 * @pld: kempld_device_data structure describing the PLD
166 * @index: register index on the chip
168 * kempld_get_mutex must be called prior to calling this function.
170 u8 kempld_read8(struct kempld_device_data *pld, u8 index)
172 iowrite8(index, pld->io_index);
173 return ioread8(pld->io_data);
175 EXPORT_SYMBOL_GPL(kempld_read8);
178 * kempld_write8 - write 8 bit register
179 * @pld: kempld_device_data structure describing the PLD
180 * @index: register index on the chip
181 * @data: new register value
183 * kempld_get_mutex must be called prior to calling this function.
185 void kempld_write8(struct kempld_device_data *pld, u8 index, u8 data)
187 iowrite8(index, pld->io_index);
188 iowrite8(data, pld->io_data);
190 EXPORT_SYMBOL_GPL(kempld_write8);
193 * kempld_read16 - read 16 bit register
194 * @pld: kempld_device_data structure describing the PLD
195 * @index: register index on the chip
197 * kempld_get_mutex must be called prior to calling this function.
199 u16 kempld_read16(struct kempld_device_data *pld, u8 index)
201 return kempld_read8(pld, index) | kempld_read8(pld, index + 1) << 8;
203 EXPORT_SYMBOL_GPL(kempld_read16);
206 * kempld_write16 - write 16 bit register
207 * @pld: kempld_device_data structure describing the PLD
208 * @index: register index on the chip
209 * @data: new register value
211 * kempld_get_mutex must be called prior to calling this function.
213 void kempld_write16(struct kempld_device_data *pld, u8 index, u16 data)
215 kempld_write8(pld, index, (u8)data);
216 kempld_write8(pld, index + 1, (u8)(data >> 8));
218 EXPORT_SYMBOL_GPL(kempld_write16);
221 * kempld_read32 - read 32 bit register
222 * @pld: kempld_device_data structure describing the PLD
223 * @index: register index on the chip
225 * kempld_get_mutex must be called prior to calling this function.
227 u32 kempld_read32(struct kempld_device_data *pld, u8 index)
229 return kempld_read16(pld, index) | kempld_read16(pld, index + 2) << 16;
231 EXPORT_SYMBOL_GPL(kempld_read32);
234 * kempld_write32 - write 32 bit register
235 * @pld: kempld_device_data structure describing the PLD
236 * @index: register index on the chip
237 * @data: new register value
239 * kempld_get_mutex must be called prior to calling this function.
241 void kempld_write32(struct kempld_device_data *pld, u8 index, u32 data)
243 kempld_write16(pld, index, (u16)data);
244 kempld_write16(pld, index + 2, (u16)(data >> 16));
246 EXPORT_SYMBOL_GPL(kempld_write32);
249 * kempld_get_mutex - acquire PLD mutex
250 * @pld: kempld_device_data structure describing the PLD
252 void kempld_get_mutex(struct kempld_device_data *pld)
254 const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
256 mutex_lock(&pld->lock);
257 pdata->get_hardware_mutex(pld);
259 EXPORT_SYMBOL_GPL(kempld_get_mutex);
262 * kempld_release_mutex - release PLD mutex
263 * @pld: kempld_device_data structure describing the PLD
265 void kempld_release_mutex(struct kempld_device_data *pld)
267 const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
269 pdata->release_hardware_mutex(pld);
270 mutex_unlock(&pld->lock);
272 EXPORT_SYMBOL_GPL(kempld_release_mutex);
275 * kempld_get_info - update device specific information
276 * @pld: kempld_device_data structure describing the PLD
278 * This function calls the configured board specific kempld_get_info_XXXX
279 * function which is responsible for gathering information about the specific
280 * hardware. The information is then stored within the pld structure.
282 static int kempld_get_info(struct kempld_device_data *pld)
285 const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
288 ret = pdata->get_info(pld);
292 /* The Kontron PLD firmware version string has the following format:
295 * w: PLD number - 1 hex digit
296 * x: Major version - 1 alphanumerical digit (0-9A-V)
297 * y: Minor version - 1 alphanumerical digit (0-9A-V)
298 * zzzz: Build number - 4 zero padded hex digits */
300 if (pld->info.major < 10)
301 major = pld->info.major + '0';
303 major = (pld->info.major - 10) + 'A';
304 if (pld->info.minor < 10)
305 minor = pld->info.minor + '0';
307 minor = (pld->info.minor - 10) + 'A';
309 ret = scnprintf(pld->info.version, sizeof(pld->info.version),
310 "P%X%c%c.%04X", pld->info.number, major, minor,
319 * kempld_register_cells - register cell drivers
321 * This function registers cell drivers for the detected hardware by calling
322 * the configured kempld_register_cells_XXXX function which is responsible
323 * to detect and register the needed cell drivers.
325 static int kempld_register_cells(struct kempld_device_data *pld)
327 const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
329 return pdata->register_cells(pld);
332 static const char *kempld_get_type_string(struct kempld_device_data *pld)
334 const char *version_type;
336 switch (pld->info.type) {
338 version_type = "release";
341 version_type = "debug";
344 version_type = "custom";
347 version_type = "unspecified";
354 static ssize_t kempld_version_show(struct device *dev,
355 struct device_attribute *attr, char *buf)
357 struct kempld_device_data *pld = dev_get_drvdata(dev);
359 return scnprintf(buf, PAGE_SIZE, "%s\n", pld->info.version);
362 static ssize_t kempld_specification_show(struct device *dev,
363 struct device_attribute *attr, char *buf)
365 struct kempld_device_data *pld = dev_get_drvdata(dev);
367 return scnprintf(buf, PAGE_SIZE, "%d.%d\n", pld->info.spec_major,
368 pld->info.spec_minor);
371 static ssize_t kempld_type_show(struct device *dev,
372 struct device_attribute *attr, char *buf)
374 struct kempld_device_data *pld = dev_get_drvdata(dev);
376 return scnprintf(buf, PAGE_SIZE, "%s\n", kempld_get_type_string(pld));
379 static DEVICE_ATTR(pld_version, S_IRUGO, kempld_version_show, NULL);
380 static DEVICE_ATTR(pld_specification, S_IRUGO, kempld_specification_show,
382 static DEVICE_ATTR(pld_type, S_IRUGO, kempld_type_show, NULL);
384 static struct attribute *pld_attributes[] = {
385 &dev_attr_pld_version.attr,
386 &dev_attr_pld_specification.attr,
387 &dev_attr_pld_type.attr,
391 static const struct attribute_group pld_attr_group = {
392 .attrs = pld_attributes,
395 static int kempld_detect_device(struct kempld_device_data *pld)
400 mutex_lock(&pld->lock);
402 /* Check for empty IO space */
403 index_reg = ioread8(pld->io_index);
404 if (index_reg == 0xff && ioread8(pld->io_data) == 0xff) {
405 mutex_unlock(&pld->lock);
409 /* Release hardware mutex if acquired */
410 if (!(index_reg & KEMPLD_MUTEX_KEY)) {
411 iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
412 /* PXT and COMe-cPC2 boards may require a second release */
413 iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
416 mutex_unlock(&pld->lock);
418 ret = kempld_get_info(pld);
422 dev_info(pld->dev, "Found Kontron PLD - %s (%s), spec %d.%d\n",
423 pld->info.version, kempld_get_type_string(pld),
424 pld->info.spec_major, pld->info.spec_minor);
426 ret = sysfs_create_group(&pld->dev->kobj, &pld_attr_group);
430 ret = kempld_register_cells(pld);
432 sysfs_remove_group(&pld->dev->kobj, &pld_attr_group);
437 static int kempld_probe(struct platform_device *pdev)
439 const struct kempld_platform_data *pdata =
440 dev_get_platdata(&pdev->dev);
441 struct device *dev = &pdev->dev;
442 struct kempld_device_data *pld;
443 struct resource *ioport;
445 pld = devm_kzalloc(dev, sizeof(*pld), GFP_KERNEL);
449 ioport = platform_get_resource(pdev, IORESOURCE_IO, 0);
453 pld->io_base = devm_ioport_map(dev, ioport->start,
454 resource_size(ioport));
458 pld->io_index = pld->io_base;
459 pld->io_data = pld->io_base + 1;
460 pld->pld_clock = pdata->pld_clock;
463 mutex_init(&pld->lock);
464 platform_set_drvdata(pdev, pld);
466 return kempld_detect_device(pld);
469 static int kempld_remove(struct platform_device *pdev)
471 struct kempld_device_data *pld = platform_get_drvdata(pdev);
472 const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
474 sysfs_remove_group(&pld->dev->kobj, &pld_attr_group);
476 mfd_remove_devices(&pdev->dev);
477 pdata->release_hardware_mutex(pld);
482 static struct platform_driver kempld_driver = {
486 .probe = kempld_probe,
487 .remove = kempld_remove,
490 static const struct dmi_system_id kempld_dmi_table[] __initconst = {
494 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
495 DMI_MATCH(DMI_BOARD_NAME, "COMe-bBD"),
497 .driver_data = (void *)&kempld_platform_data_generic,
498 .callback = kempld_create_platform_device,
502 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
503 DMI_MATCH(DMI_BOARD_NAME, "COMe-bBL6"),
505 .driver_data = (void *)&kempld_platform_data_generic,
506 .callback = kempld_create_platform_device,
510 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
511 DMI_MATCH(DMI_BOARD_NAME, "COMe-bHL6"),
513 .driver_data = (void *)&kempld_platform_data_generic,
514 .callback = kempld_create_platform_device,
518 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
519 DMI_MATCH(DMI_BOARD_NAME, "COMe-bKL6"),
521 .driver_data = (void *)&kempld_platform_data_generic,
522 .callback = kempld_create_platform_device,
526 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
527 DMI_MATCH(DMI_BOARD_NAME, "COMe-bSL6"),
529 .driver_data = (void *)&kempld_platform_data_generic,
530 .callback = kempld_create_platform_device,
534 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
535 DMI_MATCH(DMI_BOARD_NAME, "COMe-cAL"),
537 .driver_data = (void *)&kempld_platform_data_generic,
538 .callback = kempld_create_platform_device,
542 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
543 DMI_MATCH(DMI_BOARD_NAME, "COMe-cBL6"),
545 .driver_data = (void *)&kempld_platform_data_generic,
546 .callback = kempld_create_platform_device,
550 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
551 DMI_MATCH(DMI_BOARD_NAME, "COMe-cBW6"),
553 .driver_data = (void *)&kempld_platform_data_generic,
554 .callback = kempld_create_platform_device,
558 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
559 DMI_MATCH(DMI_BOARD_NAME, "COMe-bIP2"),
561 .driver_data = (void *)&kempld_platform_data_generic,
562 .callback = kempld_create_platform_device,
566 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
567 DMI_MATCH(DMI_BOARD_NAME, "COMe-bIP6"),
569 .driver_data = (void *)&kempld_platform_data_generic,
570 .callback = kempld_create_platform_device,
574 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
575 DMI_MATCH(DMI_BOARD_NAME, "COMe-cHL6"),
577 .driver_data = (void *)&kempld_platform_data_generic,
578 .callback = kempld_create_platform_device,
582 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
583 DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-SC T2"),
585 .driver_data = (void *)&kempld_platform_data_generic,
586 .callback = kempld_create_platform_device,
590 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
591 DMI_MATCH(DMI_BOARD_NAME, "ETXe-SC T2"),
593 .driver_data = (void *)&kempld_platform_data_generic,
594 .callback = kempld_create_platform_device,
598 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
599 DMI_MATCH(DMI_BOARD_NAME, "COMe-bSC2"),
601 .driver_data = (void *)&kempld_platform_data_generic,
602 .callback = kempld_create_platform_device,
606 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
607 DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-SC T6"),
609 .driver_data = (void *)&kempld_platform_data_generic,
610 .callback = kempld_create_platform_device,
614 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
615 DMI_MATCH(DMI_BOARD_NAME, "ETXe-SC T6"),
617 .driver_data = (void *)&kempld_platform_data_generic,
618 .callback = kempld_create_platform_device,
622 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
623 DMI_MATCH(DMI_BOARD_NAME, "COMe-bSC6"),
625 .driver_data = (void *)&kempld_platform_data_generic,
626 .callback = kempld_create_platform_device,
630 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
631 DMI_MATCH(DMI_BOARD_NAME, "COMe-cKL6"),
633 .driver_data = (void *)&kempld_platform_data_generic,
634 .callback = kempld_create_platform_device,
638 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
639 DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-PC"),
641 .driver_data = (void *)&kempld_platform_data_generic,
642 .callback = kempld_create_platform_device,
646 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
647 DMI_MATCH(DMI_BOARD_NAME, "COMe-bPC2"),
649 .driver_data = (void *)&kempld_platform_data_generic,
650 .callback = kempld_create_platform_device,
654 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
655 DMI_MATCH(DMI_BOARD_NAME, "PXT"),
657 .driver_data = (void *)&kempld_platform_data_generic,
658 .callback = kempld_create_platform_device,
662 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
663 DMI_MATCH(DMI_BOARD_NAME, "COMe-cSL6"),
665 .driver_data = (void *)&kempld_platform_data_generic,
666 .callback = kempld_create_platform_device,
670 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
671 DMI_MATCH(DMI_BOARD_NAME, "COMe-cBT"),
673 .driver_data = (void *)&kempld_platform_data_generic,
674 .callback = kempld_create_platform_device,
678 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
679 DMI_MATCH(DMI_BIOS_VERSION, "FRI2"),
681 .driver_data = (void *)&kempld_platform_data_generic,
682 .callback = kempld_create_platform_device,
686 DMI_MATCH(DMI_PRODUCT_NAME, "Fish River Island II"),
688 .driver_data = (void *)&kempld_platform_data_generic,
689 .callback = kempld_create_platform_device,
693 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
694 DMI_MATCH(DMI_BOARD_NAME, "COMe-mAL10"),
696 .driver_data = (void *)&kempld_platform_data_generic,
697 .callback = kempld_create_platform_device,
701 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
702 DMI_MATCH(DMI_BOARD_NAME, "ETX-OH"),
704 .driver_data = (void *)&kempld_platform_data_generic,
705 .callback = kempld_create_platform_device,
709 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
710 DMI_MATCH(DMI_BOARD_NAME, "COMe-mBT"),
712 .driver_data = (void *)&kempld_platform_data_generic,
713 .callback = kempld_create_platform_device,
717 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
718 DMI_MATCH(DMI_BOARD_NAME, "nanoETXexpress-TT"),
720 .driver_data = (void *)&kempld_platform_data_generic,
721 .callback = kempld_create_platform_device,
725 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
726 DMI_MATCH(DMI_BOARD_NAME, "nETXe-TT"),
728 .driver_data = (void *)&kempld_platform_data_generic,
729 .callback = kempld_create_platform_device,
733 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
734 DMI_MATCH(DMI_BOARD_NAME, "COMe-mTT"),
736 .driver_data = (void *)&kempld_platform_data_generic,
737 .callback = kempld_create_platform_device,
741 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
742 DMI_MATCH(DMI_BOARD_NAME, "COMe-mCT"),
744 .driver_data = (void *)&kempld_platform_data_generic,
745 .callback = kempld_create_platform_device,
749 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
750 DMI_MATCH(DMI_BOARD_NAME, "microETXexpress-DC"),
752 .driver_data = (void *)&kempld_platform_data_generic,
753 .callback = kempld_create_platform_device,
757 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
758 DMI_MATCH(DMI_BOARD_NAME, "COMe-cDC2"),
760 .driver_data = (void *)&kempld_platform_data_generic,
761 .callback = kempld_create_platform_device,
765 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
766 DMI_MATCH(DMI_BOARD_NAME, "microETXexpress-PC"),
768 .driver_data = (void *)&kempld_platform_data_generic,
769 .callback = kempld_create_platform_device,
773 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
774 DMI_MATCH(DMI_BOARD_NAME, "COMe-cPC2"),
776 .driver_data = (void *)&kempld_platform_data_generic,
777 .callback = kempld_create_platform_device,
781 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
782 DMI_MATCH(DMI_BOARD_NAME, "COMe-cCT6"),
784 .driver_data = (void *)&kempld_platform_data_generic,
785 .callback = kempld_create_platform_device,
790 DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
791 DMI_MATCH(DMI_BOARD_NAME, "COMe-cTH6"),
793 .driver_data = (void *)&kempld_platform_data_generic,
794 .callback = kempld_create_platform_device,
798 MODULE_DEVICE_TABLE(dmi, kempld_dmi_table);
800 static int __init kempld_init(void)
802 const struct dmi_system_id *id;
804 if (force_device_id[0]) {
805 for (id = kempld_dmi_table;
806 id->matches[0].slot != DMI_NONE; id++)
807 if (strstr(id->ident, force_device_id))
808 if (id->callback && !id->callback(id))
810 if (id->matches[0].slot == DMI_NONE)
813 if (!dmi_check_system(kempld_dmi_table))
817 return platform_driver_register(&kempld_driver);
820 static void __exit kempld_exit(void)
823 platform_device_unregister(kempld_pdev);
825 platform_driver_unregister(&kempld_driver);
828 module_init(kempld_init);
829 module_exit(kempld_exit);
831 MODULE_DESCRIPTION("KEM PLD Core Driver");
833 MODULE_LICENSE("GPL");
834 MODULE_ALIAS("platform:kempld-core");