Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Kontron PLD MFD core driver
  4 *
  5 * Copyright (c) 2010-2013 Kontron Europe GmbH
  6 * Author: Michael Brunner <michael.brunner@kontron.com>
 
 
 
 
 
 
 
 
 
  7 */
  8
  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>
 14#include <linux/io.h>
 15#include <linux/delay.h>
 16#include <linux/acpi.h>
 17
 18#define MAX_ID_LEN 4
 19static char force_device_id[MAX_ID_LEN + 1] = "";
 20module_param_string(force_device_id, force_device_id,
 21		    sizeof(force_device_id), 0);
 22MODULE_PARM_DESC(force_device_id, "Override detected product");
 23
 24/*
 25 * Get hardware mutex to block firmware from accessing the pld.
 26 * It is possible for the firmware may hold the mutex for an extended length of
 27 * time. This function will block until access has been granted.
 28 */
 29static void kempld_get_hardware_mutex(struct kempld_device_data *pld)
 30{
 31	/* The mutex bit will read 1 until access has been granted */
 32	while (ioread8(pld->io_index) & KEMPLD_MUTEX_KEY)
 33		usleep_range(1000, 3000);
 34}
 35
 36static void kempld_release_hardware_mutex(struct kempld_device_data *pld)
 37{
 38	/* The harware mutex is released when 1 is written to the mutex bit. */
 39	iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
 40}
 41
 42static int kempld_get_info_generic(struct kempld_device_data *pld)
 43{
 44	u16 version;
 45	u8 spec;
 46
 47	kempld_get_mutex(pld);
 48
 49	version = kempld_read16(pld, KEMPLD_VERSION);
 50	spec = kempld_read8(pld, KEMPLD_SPEC);
 51	pld->info.buildnr = kempld_read16(pld, KEMPLD_BUILDNR);
 52
 53	pld->info.minor = KEMPLD_VERSION_GET_MINOR(version);
 54	pld->info.major = KEMPLD_VERSION_GET_MAJOR(version);
 55	pld->info.number = KEMPLD_VERSION_GET_NUMBER(version);
 56	pld->info.type = KEMPLD_VERSION_GET_TYPE(version);
 57
 58	if (spec == 0xff) {
 59		pld->info.spec_minor = 0;
 60		pld->info.spec_major = 1;
 61	} else {
 62		pld->info.spec_minor = KEMPLD_SPEC_GET_MINOR(spec);
 63		pld->info.spec_major = KEMPLD_SPEC_GET_MAJOR(spec);
 64	}
 65
 66	if (pld->info.spec_major > 0)
 67		pld->feature_mask = kempld_read16(pld, KEMPLD_FEATURE);
 68	else
 69		pld->feature_mask = 0;
 70
 71	kempld_release_mutex(pld);
 72
 73	return 0;
 74}
 75
 76enum kempld_cells {
 77	KEMPLD_I2C = 0,
 78	KEMPLD_WDT,
 79	KEMPLD_GPIO,
 80	KEMPLD_UART,
 81};
 82
 83static const char *kempld_dev_names[] = {
 84	[KEMPLD_I2C] = "kempld-i2c",
 85	[KEMPLD_WDT] = "kempld-wdt",
 86	[KEMPLD_GPIO] = "kempld-gpio",
 87	[KEMPLD_UART] = "kempld-uart",
 
 
 
 
 
 
 
 
 88};
 89
 90#define KEMPLD_MAX_DEVS	ARRAY_SIZE(kempld_dev_names)
 91
 92static int kempld_register_cells_generic(struct kempld_device_data *pld)
 93{
 94	struct mfd_cell devs[KEMPLD_MAX_DEVS] = {};
 95	int i = 0;
 96
 97	if (pld->feature_mask & KEMPLD_FEATURE_BIT_I2C)
 98		devs[i++].name = kempld_dev_names[KEMPLD_I2C];
 99
100	if (pld->feature_mask & KEMPLD_FEATURE_BIT_WATCHDOG)
101		devs[i++].name = kempld_dev_names[KEMPLD_WDT];
102
103	if (pld->feature_mask & KEMPLD_FEATURE_BIT_GPIO)
104		devs[i++].name = kempld_dev_names[KEMPLD_GPIO];
105
106	if (pld->feature_mask & KEMPLD_FEATURE_MASK_UART)
107		devs[i++].name = kempld_dev_names[KEMPLD_UART];
108
109	return mfd_add_devices(pld->dev, -1, devs, i, NULL, 0, NULL);
110}
111
112static struct resource kempld_ioresource = {
113	.start	= KEMPLD_IOINDEX,
114	.end	= KEMPLD_IODATA,
115	.flags	= IORESOURCE_IO,
116};
117
118static const struct kempld_platform_data kempld_platform_data_generic = {
119	.pld_clock		= KEMPLD_CLK,
120	.ioresource		= &kempld_ioresource,
121	.get_hardware_mutex	= kempld_get_hardware_mutex,
122	.release_hardware_mutex	= kempld_release_hardware_mutex,
123	.get_info		= kempld_get_info_generic,
124	.register_cells		= kempld_register_cells_generic,
125};
126
127static struct platform_device *kempld_pdev;
128
129static int kempld_create_platform_device(const struct dmi_system_id *id)
130{
131	const struct kempld_platform_data *pdata = id->driver_data;
132	int ret;
133
134	kempld_pdev = platform_device_alloc("kempld", -1);
135	if (!kempld_pdev)
136		return -ENOMEM;
137
138	ret = platform_device_add_data(kempld_pdev, pdata, sizeof(*pdata));
139	if (ret)
140		goto err;
141
142	ret = platform_device_add_resources(kempld_pdev, pdata->ioresource, 1);
143	if (ret)
144		goto err;
145
146	ret = platform_device_add(kempld_pdev);
147	if (ret)
148		goto err;
149
150	return 0;
151err:
152	platform_device_put(kempld_pdev);
153	return ret;
154}
155
156/**
157 * kempld_read8 - read 8 bit register
158 * @pld: kempld_device_data structure describing the PLD
159 * @index: register index on the chip
160 *
161 * kempld_get_mutex must be called prior to calling this function.
162 */
163u8 kempld_read8(struct kempld_device_data *pld, u8 index)
164{
165	iowrite8(index, pld->io_index);
166	return ioread8(pld->io_data);
167}
168EXPORT_SYMBOL_GPL(kempld_read8);
169
170/**
171 * kempld_write8 - write 8 bit register
172 * @pld: kempld_device_data structure describing the PLD
173 * @index: register index on the chip
174 * @data: new register value
175 *
176 * kempld_get_mutex must be called prior to calling this function.
177 */
178void kempld_write8(struct kempld_device_data *pld, u8 index, u8 data)
179{
180	iowrite8(index, pld->io_index);
181	iowrite8(data, pld->io_data);
182}
183EXPORT_SYMBOL_GPL(kempld_write8);
184
185/**
186 * kempld_read16 - read 16 bit register
187 * @pld: kempld_device_data structure describing the PLD
188 * @index: register index on the chip
189 *
190 * kempld_get_mutex must be called prior to calling this function.
191 */
192u16 kempld_read16(struct kempld_device_data *pld, u8 index)
193{
194	return kempld_read8(pld, index) | kempld_read8(pld, index + 1) << 8;
195}
196EXPORT_SYMBOL_GPL(kempld_read16);
197
198/**
199 * kempld_write16 - write 16 bit register
200 * @pld: kempld_device_data structure describing the PLD
201 * @index: register index on the chip
202 * @data: new register value
203 *
204 * kempld_get_mutex must be called prior to calling this function.
205 */
206void kempld_write16(struct kempld_device_data *pld, u8 index, u16 data)
207{
208	kempld_write8(pld, index, (u8)data);
209	kempld_write8(pld, index + 1, (u8)(data >> 8));
210}
211EXPORT_SYMBOL_GPL(kempld_write16);
212
213/**
214 * kempld_read32 - read 32 bit register
215 * @pld: kempld_device_data structure describing the PLD
216 * @index: register index on the chip
217 *
218 * kempld_get_mutex must be called prior to calling this function.
219 */
220u32 kempld_read32(struct kempld_device_data *pld, u8 index)
221{
222	return kempld_read16(pld, index) | kempld_read16(pld, index + 2) << 16;
223}
224EXPORT_SYMBOL_GPL(kempld_read32);
225
226/**
227 * kempld_write32 - write 32 bit register
228 * @pld: kempld_device_data structure describing the PLD
229 * @index: register index on the chip
230 * @data: new register value
231 *
232 * kempld_get_mutex must be called prior to calling this function.
233 */
234void kempld_write32(struct kempld_device_data *pld, u8 index, u32 data)
235{
236	kempld_write16(pld, index, (u16)data);
237	kempld_write16(pld, index + 2, (u16)(data >> 16));
238}
239EXPORT_SYMBOL_GPL(kempld_write32);
240
241/**
242 * kempld_get_mutex - acquire PLD mutex
243 * @pld: kempld_device_data structure describing the PLD
244 */
245void kempld_get_mutex(struct kempld_device_data *pld)
246{
247	const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
248
249	mutex_lock(&pld->lock);
250	pdata->get_hardware_mutex(pld);
251}
252EXPORT_SYMBOL_GPL(kempld_get_mutex);
253
254/**
255 * kempld_release_mutex - release PLD mutex
256 * @pld: kempld_device_data structure describing the PLD
257 */
258void kempld_release_mutex(struct kempld_device_data *pld)
259{
260	const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
261
262	pdata->release_hardware_mutex(pld);
263	mutex_unlock(&pld->lock);
264}
265EXPORT_SYMBOL_GPL(kempld_release_mutex);
266
267/**
268 * kempld_get_info - update device specific information
269 * @pld: kempld_device_data structure describing the PLD
270 *
271 * This function calls the configured board specific kempld_get_info_XXXX
272 * function which is responsible for gathering information about the specific
273 * hardware. The information is then stored within the pld structure.
274 */
275static int kempld_get_info(struct kempld_device_data *pld)
276{
277	int ret;
278	const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
279	char major, minor;
280
281	ret = pdata->get_info(pld);
282	if (ret)
283		return ret;
284
285	/* The Kontron PLD firmware version string has the following format:
286	 * Pwxy.zzzz
287	 *   P:    Fixed
288	 *   w:    PLD number    - 1 hex digit
289	 *   x:    Major version - 1 alphanumerical digit (0-9A-V)
290	 *   y:    Minor version - 1 alphanumerical digit (0-9A-V)
291	 *   zzzz: Build number  - 4 zero padded hex digits */
292
293	if (pld->info.major < 10)
294		major = pld->info.major + '0';
295	else
296		major = (pld->info.major - 10) + 'A';
297	if (pld->info.minor < 10)
298		minor = pld->info.minor + '0';
299	else
300		minor = (pld->info.minor - 10) + 'A';
301
302	ret = scnprintf(pld->info.version, sizeof(pld->info.version),
303			"P%X%c%c.%04X", pld->info.number, major, minor,
304			pld->info.buildnr);
305	if (ret < 0)
306		return ret;
307
308	return 0;
309}
310
311/*
312 * kempld_register_cells - register cell drivers
313 *
314 * This function registers cell drivers for the detected hardware by calling
315 * the configured kempld_register_cells_XXXX function which is responsible
316 * to detect and register the needed cell drivers.
317 */
318static int kempld_register_cells(struct kempld_device_data *pld)
319{
320	const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
321
322	return pdata->register_cells(pld);
323}
324
325static const char *kempld_get_type_string(struct kempld_device_data *pld)
326{
327	const char *version_type;
328
329	switch (pld->info.type) {
330	case 0:
331		version_type = "release";
332		break;
333	case 1:
334		version_type = "debug";
335		break;
336	case 2:
337		version_type = "custom";
338		break;
339	default:
340		version_type = "unspecified";
341		break;
342	}
343
344	return version_type;
345}
346
347static ssize_t pld_version_show(struct device *dev,
348				struct device_attribute *attr, char *buf)
349{
350	struct kempld_device_data *pld = dev_get_drvdata(dev);
351
352	return sysfs_emit(buf, "%s\n", pld->info.version);
353}
354
355static ssize_t pld_specification_show(struct device *dev,
356				      struct device_attribute *attr, char *buf)
357{
358	struct kempld_device_data *pld = dev_get_drvdata(dev);
359
360	return sysfs_emit(buf, "%d.%d\n", pld->info.spec_major, pld->info.spec_minor);
 
361}
362
363static ssize_t pld_type_show(struct device *dev,
364			     struct device_attribute *attr, char *buf)
365{
366	struct kempld_device_data *pld = dev_get_drvdata(dev);
367
368	return sysfs_emit(buf, "%s\n", kempld_get_type_string(pld));
369}
370
371static DEVICE_ATTR_RO(pld_version);
372static DEVICE_ATTR_RO(pld_specification);
373static DEVICE_ATTR_RO(pld_type);
 
374
375static struct attribute *pld_attributes[] = {
376	&dev_attr_pld_version.attr,
377	&dev_attr_pld_specification.attr,
378	&dev_attr_pld_type.attr,
379	NULL
380};
381
382static const struct attribute_group pld_attr_group = {
383	.attrs = pld_attributes,
384};
385
386static int kempld_detect_device(struct kempld_device_data *pld)
387{
388	u8 index_reg;
389	int ret;
390
391	mutex_lock(&pld->lock);
392
393	/* Check for empty IO space */
394	index_reg = ioread8(pld->io_index);
395	if (index_reg == 0xff && ioread8(pld->io_data) == 0xff) {
396		mutex_unlock(&pld->lock);
397		return -ENODEV;
398	}
399
400	/* Release hardware mutex if acquired */
401	if (!(index_reg & KEMPLD_MUTEX_KEY)) {
402		iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
403		/* PXT and COMe-cPC2 boards may require a second release */
404		iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
405	}
406
407	mutex_unlock(&pld->lock);
408
409	ret = kempld_get_info(pld);
410	if (ret)
411		return ret;
412
413	dev_info(pld->dev, "Found Kontron PLD - %s (%s), spec %d.%d\n",
414		 pld->info.version, kempld_get_type_string(pld),
415		 pld->info.spec_major, pld->info.spec_minor);
416
417	ret = sysfs_create_group(&pld->dev->kobj, &pld_attr_group);
418	if (ret)
419		return ret;
420
421	ret = kempld_register_cells(pld);
422	if (ret)
423		sysfs_remove_group(&pld->dev->kobj, &pld_attr_group);
424
425	return ret;
426}
427
428#ifdef CONFIG_ACPI
429static int kempld_get_acpi_data(struct platform_device *pdev)
430{
431	struct list_head resource_list;
432	struct resource *resources;
433	struct resource_entry *rentry;
434	struct device *dev = &pdev->dev;
435	struct acpi_device *acpi_dev = ACPI_COMPANION(dev);
436	const struct kempld_platform_data *pdata;
437	int ret;
438	int count;
439
440	pdata = acpi_device_get_match_data(dev);
441	ret = platform_device_add_data(pdev, pdata,
442				       sizeof(struct kempld_platform_data));
443	if (ret)
444		return ret;
445
446	INIT_LIST_HEAD(&resource_list);
447	ret = acpi_dev_get_resources(acpi_dev, &resource_list, NULL, NULL);
448	if (ret < 0)
449		goto out;
450
451	count = ret;
452
453	if (count == 0) {
454		ret = platform_device_add_resources(pdev, pdata->ioresource, 1);
455		goto out;
456	}
457
458	resources = devm_kcalloc(&acpi_dev->dev, count, sizeof(*resources),
459				 GFP_KERNEL);
460	if (!resources) {
461		ret = -ENOMEM;
462		goto out;
463	}
464
465	count = 0;
466	list_for_each_entry(rentry, &resource_list, node) {
467		memcpy(&resources[count], rentry->res,
468		       sizeof(*resources));
469		count++;
470	}
471	ret = platform_device_add_resources(pdev, resources, count);
472
473out:
474	acpi_dev_free_resource_list(&resource_list);
475
476	return ret;
477}
478#else
479static int kempld_get_acpi_data(struct platform_device *pdev)
480{
481	return -ENODEV;
482}
483#endif /* CONFIG_ACPI */
484
485static int kempld_probe(struct platform_device *pdev)
486{
487	const struct kempld_platform_data *pdata;
488	struct device *dev = &pdev->dev;
489	struct kempld_device_data *pld;
490	struct resource *ioport;
491	int ret;
492
493	if (kempld_pdev == NULL) {
494		/*
495		 * No kempld_pdev device has been registered in kempld_init,
496		 * so we seem to be probing an ACPI platform device.
497		 */
498		ret = kempld_get_acpi_data(pdev);
499		if (ret)
500			return ret;
501	} else if (kempld_pdev != pdev) {
502		/*
503		 * The platform device we are probing is not the one we
504		 * registered in kempld_init using the DMI table, so this one
505		 * comes from ACPI.
506		 * As we can only probe one - abort here and use the DMI
507		 * based one instead.
508		 */
509		dev_notice(dev, "platform device exists - not using ACPI\n");
510		return -ENODEV;
511	}
512	pdata = dev_get_platdata(dev);
513
514	pld = devm_kzalloc(dev, sizeof(*pld), GFP_KERNEL);
515	if (!pld)
516		return -ENOMEM;
517
518	ioport = platform_get_resource(pdev, IORESOURCE_IO, 0);
519	if (!ioport)
520		return -EINVAL;
521
522	pld->io_base = devm_ioport_map(dev, ioport->start,
523					resource_size(ioport));
524	if (!pld->io_base)
525		return -ENOMEM;
526
527	pld->io_index = pld->io_base;
528	pld->io_data = pld->io_base + 1;
529	pld->pld_clock = pdata->pld_clock;
530	pld->dev = dev;
531
532	mutex_init(&pld->lock);
533	platform_set_drvdata(pdev, pld);
534
535	return kempld_detect_device(pld);
536}
537
538static void kempld_remove(struct platform_device *pdev)
539{
540	struct kempld_device_data *pld = platform_get_drvdata(pdev);
541	const struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
542
543	sysfs_remove_group(&pld->dev->kobj, &pld_attr_group);
544
545	mfd_remove_devices(&pdev->dev);
546	pdata->release_hardware_mutex(pld);
547}
548
549#ifdef CONFIG_ACPI
550static const struct acpi_device_id kempld_acpi_table[] = {
551	{ "KEM0000", (kernel_ulong_t)&kempld_platform_data_generic },
552	{ "KEM0001", (kernel_ulong_t)&kempld_platform_data_generic },
553	{}
554};
555MODULE_DEVICE_TABLE(acpi, kempld_acpi_table);
556#endif
557
558static struct platform_driver kempld_driver = {
559	.driver		= {
560		.name	= "kempld",
561		.acpi_match_table = ACPI_PTR(kempld_acpi_table),
562	},
563	.probe		= kempld_probe,
564	.remove_new	= kempld_remove,
565};
566
567static const struct dmi_system_id kempld_dmi_table[] __initconst = {
568	{
569		.ident = "BBD6",
570		.matches = {
571			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
572			DMI_MATCH(DMI_BOARD_NAME, "COMe-bBD"),
573		},
574		.driver_data = (void *)&kempld_platform_data_generic,
575		.callback = kempld_create_platform_device,
576	}, {
577		.ident = "BBL6",
578		.matches = {
579			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
580			DMI_MATCH(DMI_BOARD_NAME, "COMe-bBL6"),
581		},
582		.driver_data = (void *)&kempld_platform_data_generic,
583		.callback = kempld_create_platform_device,
584	}, {
585		.ident = "BDV7",
586		.matches = {
587			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
588			DMI_MATCH(DMI_BOARD_NAME, "COMe-bDV7"),
589		},
590		.driver_data = (void *)&kempld_platform_data_generic,
591		.callback = kempld_create_platform_device,
592	}, {
593		.ident = "BHL6",
594		.matches = {
595			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
596			DMI_MATCH(DMI_BOARD_NAME, "COMe-bHL6"),
597		},
598		.driver_data = (void *)&kempld_platform_data_generic,
599		.callback = kempld_create_platform_device,
600	}, {
601		.ident = "BKL6",
602		.matches = {
603			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
604			DMI_MATCH(DMI_BOARD_NAME, "COMe-bKL6"),
605		},
606		.driver_data = (void *)&kempld_platform_data_generic,
607		.callback = kempld_create_platform_device,
608	}, {
609		.ident = "BSL6",
610		.matches = {
611			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
612			DMI_MATCH(DMI_BOARD_NAME, "COMe-bSL6"),
613		},
614		.driver_data = (void *)&kempld_platform_data_generic,
615		.callback = kempld_create_platform_device,
616	}, {
617		.ident = "CAL6",
618		.matches = {
619			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
620			DMI_MATCH(DMI_BOARD_NAME, "COMe-cAL"),
621		},
622		.driver_data = (void *)&kempld_platform_data_generic,
623		.callback = kempld_create_platform_device,
624	}, {
625		.ident = "CBL6",
626		.matches = {
627			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
628			DMI_MATCH(DMI_BOARD_NAME, "COMe-cBL6"),
629		},
630		.driver_data = (void *)&kempld_platform_data_generic,
631		.callback = kempld_create_platform_device,
632	}, {
633		.ident = "CBW6",
634		.matches = {
635			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
636			DMI_MATCH(DMI_BOARD_NAME, "COMe-cBW6"),
637		},
638		.driver_data = (void *)&kempld_platform_data_generic,
639		.callback = kempld_create_platform_device,
640	}, {
641		.ident = "CCR2",
642		.matches = {
643			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
644			DMI_MATCH(DMI_BOARD_NAME, "COMe-bIP2"),
645		},
646		.driver_data = (void *)&kempld_platform_data_generic,
647		.callback = kempld_create_platform_device,
648	}, {
649		.ident = "CCR6",
650		.matches = {
651			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
652			DMI_MATCH(DMI_BOARD_NAME, "COMe-bIP6"),
653		},
654		.driver_data = (void *)&kempld_platform_data_generic,
655		.callback = kempld_create_platform_device,
656	}, {
657		.ident = "CDV7",
658		.matches = {
659			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
660			DMI_MATCH(DMI_BOARD_NAME, "COMe-cDV7"),
661		},
662		.driver_data = (void *)&kempld_platform_data_generic,
663		.callback = kempld_create_platform_device,
664	}, {
665		.ident = "CHL6",
666		.matches = {
667			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
668			DMI_MATCH(DMI_BOARD_NAME, "COMe-cHL6"),
669		},
670		.driver_data = (void *)&kempld_platform_data_generic,
671		.callback = kempld_create_platform_device,
672	}, {
673		.ident = "CHR2",
674		.matches = {
675			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
676			DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-SC T2"),
677		},
678		.driver_data = (void *)&kempld_platform_data_generic,
679		.callback = kempld_create_platform_device,
680	}, {
681		.ident = "CHR2",
682		.matches = {
683			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
684			DMI_MATCH(DMI_BOARD_NAME, "ETXe-SC T2"),
685		},
686		.driver_data = (void *)&kempld_platform_data_generic,
687		.callback = kempld_create_platform_device,
688	}, {
689		.ident = "CHR2",
690		.matches = {
691			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
692			DMI_MATCH(DMI_BOARD_NAME, "COMe-bSC2"),
693		},
694		.driver_data = (void *)&kempld_platform_data_generic,
695		.callback = kempld_create_platform_device,
696	}, {
697		.ident = "CHR6",
698		.matches = {
699			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
700			DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-SC T6"),
701		},
702		.driver_data = (void *)&kempld_platform_data_generic,
703		.callback = kempld_create_platform_device,
704	}, {
705		.ident = "CHR6",
706		.matches = {
707			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
708			DMI_MATCH(DMI_BOARD_NAME, "ETXe-SC T6"),
709		},
710		.driver_data = (void *)&kempld_platform_data_generic,
711		.callback = kempld_create_platform_device,
712	}, {
713		.ident = "CHR6",
714		.matches = {
715			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
716			DMI_MATCH(DMI_BOARD_NAME, "COMe-bSC6"),
717		},
718		.driver_data = (void *)&kempld_platform_data_generic,
719		.callback = kempld_create_platform_device,
720	}, {
721		.ident = "CKL6",
722		.matches = {
723			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
724			DMI_MATCH(DMI_BOARD_NAME, "COMe-cKL6"),
725		},
726		.driver_data = (void *)&kempld_platform_data_generic,
727		.callback = kempld_create_platform_device,
728	}, {
729		.ident = "CNTG",
730		.matches = {
731			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
732			DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-PC"),
733		},
734		.driver_data = (void *)&kempld_platform_data_generic,
735		.callback = kempld_create_platform_device,
736	}, {
737		.ident = "CNTG",
738		.matches = {
739			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
740			DMI_MATCH(DMI_BOARD_NAME, "COMe-bPC2"),
741		},
742		.driver_data = (void *)&kempld_platform_data_generic,
743		.callback = kempld_create_platform_device,
744	}, {
745		.ident = "CNTX",
746		.matches = {
747			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
748			DMI_MATCH(DMI_BOARD_NAME, "PXT"),
749		},
750		.driver_data = (void *)&kempld_platform_data_generic,
751		.callback = kempld_create_platform_device,
752	}, {
753		.ident = "CSL6",
754		.matches = {
755			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
756			DMI_MATCH(DMI_BOARD_NAME, "COMe-cSL6"),
757		},
758		.driver_data = (void *)&kempld_platform_data_generic,
759		.callback = kempld_create_platform_device,
760	}, {
761		.ident = "CVV6",
762		.matches = {
763			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
764			DMI_MATCH(DMI_BOARD_NAME, "COMe-cBT"),
765		},
766		.driver_data = (void *)&kempld_platform_data_generic,
767		.callback = kempld_create_platform_device,
768	}, {
769		.ident = "FRI2",
770		.matches = {
771			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
772			DMI_MATCH(DMI_BIOS_VERSION, "FRI2"),
773		},
774		.driver_data = (void *)&kempld_platform_data_generic,
775		.callback = kempld_create_platform_device,
776	}, {
777		.ident = "FRI2",
778		.matches = {
779			DMI_MATCH(DMI_PRODUCT_NAME, "Fish River Island II"),
780		},
781		.driver_data = (void *)&kempld_platform_data_generic,
782		.callback = kempld_create_platform_device,
783	}, {
784		.ident = "A203",
785		.matches = {
786			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
787			DMI_MATCH(DMI_BOARD_NAME, "KBox A-203"),
788		},
789		.driver_data = (void *)&kempld_platform_data_generic,
790		.callback = kempld_create_platform_device,
791	}, {
792		.ident = "M4A1",
793		.matches = {
794			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
795			DMI_MATCH(DMI_BOARD_NAME, "COMe-m4AL"),
796		},
797		.driver_data = (void *)&kempld_platform_data_generic,
798		.callback = kempld_create_platform_device,
799	}, {
800		.ident = "MAL1",
801		.matches = {
802			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
803			DMI_MATCH(DMI_BOARD_NAME, "COMe-mAL10"),
804		},
805		.driver_data = (void *)&kempld_platform_data_generic,
806		.callback = kempld_create_platform_device,
807	}, {
808		.ident = "MAPL",
809		.matches = {
810			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
811			DMI_MATCH(DMI_BOARD_NAME, "mITX-APL"),
812		},
813		.driver_data = (void *)&kempld_platform_data_generic,
814		.callback = kempld_create_platform_device,
815	}, {
816		.ident = "MBR1",
817		.matches = {
818			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
819			DMI_MATCH(DMI_BOARD_NAME, "ETX-OH"),
820		},
821		.driver_data = (void *)&kempld_platform_data_generic,
822		.callback = kempld_create_platform_device,
823	}, {
824		.ident = "MVV1",
825		.matches = {
826			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
827			DMI_MATCH(DMI_BOARD_NAME, "COMe-mBT"),
828		},
829		.driver_data = (void *)&kempld_platform_data_generic,
830		.callback = kempld_create_platform_device,
831	}, {
832		.ident = "NTC1",
833		.matches = {
834			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
835			DMI_MATCH(DMI_BOARD_NAME, "nanoETXexpress-TT"),
836		},
837		.driver_data = (void *)&kempld_platform_data_generic,
838		.callback = kempld_create_platform_device,
839	}, {
840		.ident = "NTC1",
841		.matches = {
842			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
843			DMI_MATCH(DMI_BOARD_NAME, "nETXe-TT"),
844		},
845		.driver_data = (void *)&kempld_platform_data_generic,
846		.callback = kempld_create_platform_device,
847	}, {
848		.ident = "NTC1",
849		.matches = {
850			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
851			DMI_MATCH(DMI_BOARD_NAME, "COMe-mTT"),
852		},
853		.driver_data = (void *)&kempld_platform_data_generic,
854		.callback = kempld_create_platform_device,
855	}, {
856		.ident = "NUP1",
857		.matches = {
858			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
859			DMI_MATCH(DMI_BOARD_NAME, "COMe-mCT"),
860		},
861		.driver_data = (void *)&kempld_platform_data_generic,
862		.callback = kempld_create_platform_device,
863	}, {
864		.ident = "PAPL",
865		.matches = {
866			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
867			DMI_MATCH(DMI_BOARD_NAME, "pITX-APL"),
868		},
869		.driver_data = (void *)&kempld_platform_data_generic,
870		.callback = kempld_create_platform_device,
871	}, {
872		.ident = "SXAL",
873		.matches = {
874			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
875			DMI_MATCH(DMI_BOARD_NAME, "SMARC-sXAL"),
876		},
877		.driver_data = (void *)&kempld_platform_data_generic,
878		.callback = kempld_create_platform_device,
879	}, {
880		.ident = "SXAL4",
881		.matches = {
882			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
883			DMI_MATCH(DMI_BOARD_NAME, "SMARC-sXA4"),
884		},
885		.driver_data = (void *)&kempld_platform_data_generic,
886		.callback = kempld_create_platform_device,
887	}, {
888		.ident = "UNP1",
889		.matches = {
890			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
891			DMI_MATCH(DMI_BOARD_NAME, "microETXexpress-DC"),
892		},
893		.driver_data = (void *)&kempld_platform_data_generic,
894		.callback = kempld_create_platform_device,
895	}, {
896		.ident = "UNP1",
897		.matches = {
898			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
899			DMI_MATCH(DMI_BOARD_NAME, "COMe-cDC2"),
900		},
901		.driver_data = (void *)&kempld_platform_data_generic,
902		.callback = kempld_create_platform_device,
903	}, {
904		.ident = "UNTG",
905		.matches = {
906			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
907			DMI_MATCH(DMI_BOARD_NAME, "microETXexpress-PC"),
908		},
909		.driver_data = (void *)&kempld_platform_data_generic,
910		.callback = kempld_create_platform_device,
911	}, {
912		.ident = "UNTG",
913		.matches = {
914			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
915			DMI_MATCH(DMI_BOARD_NAME, "COMe-cPC2"),
916		},
917		.driver_data = (void *)&kempld_platform_data_generic,
918		.callback = kempld_create_platform_device,
919	}, {
920		.ident = "UUP6",
921		.matches = {
922			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
923			DMI_MATCH(DMI_BOARD_NAME, "COMe-cCT6"),
924		},
925		.driver_data = (void *)&kempld_platform_data_generic,
926		.callback = kempld_create_platform_device,
927	}, {
 
928		.ident = "UTH6",
929		.matches = {
930			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
931			DMI_MATCH(DMI_BOARD_NAME, "COMe-cTH6"),
932		},
933		.driver_data = (void *)&kempld_platform_data_generic,
934		.callback = kempld_create_platform_device,
935	}, {
936		.ident = "Q7AL",
937		.matches = {
938			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
939			DMI_MATCH(DMI_BOARD_NAME, "Qseven-Q7AL"),
940		},
941		.driver_data = (void *)&kempld_platform_data_generic,
942		.callback = kempld_create_platform_device,
943	},
944	{}
945};
946MODULE_DEVICE_TABLE(dmi, kempld_dmi_table);
947
948static int __init kempld_init(void)
949{
950	const struct dmi_system_id *id;
951
952	if (force_device_id[0]) {
953		for (id = kempld_dmi_table;
954		     id->matches[0].slot != DMI_NONE; id++)
955			if (strstr(id->ident, force_device_id))
956				if (id->callback && !id->callback(id))
957					break;
958		if (id->matches[0].slot == DMI_NONE)
959			return -ENODEV;
960	} else {
961		dmi_check_system(kempld_dmi_table);
 
962	}
963
964	return platform_driver_register(&kempld_driver);
965}
966
967static void __exit kempld_exit(void)
968{
969	if (kempld_pdev)
970		platform_device_unregister(kempld_pdev);
971
972	platform_driver_unregister(&kempld_driver);
973}
974
975module_init(kempld_init);
976module_exit(kempld_exit);
977
978MODULE_DESCRIPTION("KEM PLD Core Driver");
979MODULE_AUTHOR("Michael Brunner <michael.brunner@kontron.com>");
980MODULE_LICENSE("GPL");
981MODULE_ALIAS("platform:kempld-core");
v4.17
 
  1/*
  2 * Kontron PLD MFD core driver
  3 *
  4 * Copyright (c) 2010-2013 Kontron Europe GmbH
  5 * Author: Michael Brunner <michael.brunner@kontron.com>
  6 *
  7 * This program is free software; you can redistribute it and/or modify
  8 * it under the terms of the GNU General Public License 2 as published
  9 * by the Free Software Foundation.
 10 *
 11 * This program is distributed in the hope that it will be useful,
 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 14 * GNU General Public License for more details.
 15 */
 16
 17#include <linux/platform_device.h>
 18#include <linux/mfd/core.h>
 19#include <linux/mfd/kempld.h>
 20#include <linux/module.h>
 21#include <linux/dmi.h>
 22#include <linux/io.h>
 23#include <linux/delay.h>
 
 24
 25#define MAX_ID_LEN 4
 26static char force_device_id[MAX_ID_LEN + 1] = "";
 27module_param_string(force_device_id, force_device_id,
 28		    sizeof(force_device_id), 0);
 29MODULE_PARM_DESC(force_device_id, "Override detected product");
 30
 31/*
 32 * Get hardware mutex to block firmware from accessing the pld.
 33 * It is possible for the firmware may hold the mutex for an extended length of
 34 * time. This function will block until access has been granted.
 35 */
 36static void kempld_get_hardware_mutex(struct kempld_device_data *pld)
 37{
 38	/* The mutex bit will read 1 until access has been granted */
 39	while (ioread8(pld->io_index) & KEMPLD_MUTEX_KEY)
 40		usleep_range(1000, 3000);
 41}
 42
 43static void kempld_release_hardware_mutex(struct kempld_device_data *pld)
 44{
 45	/* The harware mutex is released when 1 is written to the mutex bit. */
 46	iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
 47}
 48
 49static int kempld_get_info_generic(struct kempld_device_data *pld)
 50{
 51	u16 version;
 52	u8 spec;
 53
 54	kempld_get_mutex(pld);
 55
 56	version = kempld_read16(pld, KEMPLD_VERSION);
 57	spec = kempld_read8(pld, KEMPLD_SPEC);
 58	pld->info.buildnr = kempld_read16(pld, KEMPLD_BUILDNR);
 59
 60	pld->info.minor = KEMPLD_VERSION_GET_MINOR(version);
 61	pld->info.major = KEMPLD_VERSION_GET_MAJOR(version);
 62	pld->info.number = KEMPLD_VERSION_GET_NUMBER(version);
 63	pld->info.type = KEMPLD_VERSION_GET_TYPE(version);
 64
 65	if (spec == 0xff) {
 66		pld->info.spec_minor = 0;
 67		pld->info.spec_major = 1;
 68	} else {
 69		pld->info.spec_minor = KEMPLD_SPEC_GET_MINOR(spec);
 70		pld->info.spec_major = KEMPLD_SPEC_GET_MAJOR(spec);
 71	}
 72
 73	if (pld->info.spec_major > 0)
 74		pld->feature_mask = kempld_read16(pld, KEMPLD_FEATURE);
 75	else
 76		pld->feature_mask = 0;
 77
 78	kempld_release_mutex(pld);
 79
 80	return 0;
 81}
 82
 83enum kempld_cells {
 84	KEMPLD_I2C = 0,
 85	KEMPLD_WDT,
 86	KEMPLD_GPIO,
 87	KEMPLD_UART,
 88};
 89
 90static const struct mfd_cell kempld_devs[] = {
 91	[KEMPLD_I2C] = {
 92		.name = "kempld-i2c",
 93	},
 94	[KEMPLD_WDT] = {
 95		.name = "kempld-wdt",
 96	},
 97	[KEMPLD_GPIO] = {
 98		.name = "kempld-gpio",
 99	},
100	[KEMPLD_UART] = {
101		.name = "kempld-uart",
102	},
103};
104
105#define KEMPLD_MAX_DEVS	ARRAY_SIZE(kempld_devs)
106
107static int kempld_register_cells_generic(struct kempld_device_data *pld)
108{
109	struct mfd_cell devs[KEMPLD_MAX_DEVS];
110	int i = 0;
111
112	if (pld->feature_mask & KEMPLD_FEATURE_BIT_I2C)
113		devs[i++] = kempld_devs[KEMPLD_I2C];
114
115	if (pld->feature_mask & KEMPLD_FEATURE_BIT_WATCHDOG)
116		devs[i++] = kempld_devs[KEMPLD_WDT];
117
118	if (pld->feature_mask & KEMPLD_FEATURE_BIT_GPIO)
119		devs[i++] = kempld_devs[KEMPLD_GPIO];
120
121	if (pld->feature_mask & KEMPLD_FEATURE_MASK_UART)
122		devs[i++] = kempld_devs[KEMPLD_UART];
123
124	return mfd_add_devices(pld->dev, -1, devs, i, NULL, 0, NULL);
125}
126
127static struct resource kempld_ioresource = {
128	.start	= KEMPLD_IOINDEX,
129	.end	= KEMPLD_IODATA,
130	.flags	= IORESOURCE_IO,
131};
132
133static const struct kempld_platform_data kempld_platform_data_generic = {
134	.pld_clock		= KEMPLD_CLK,
135	.ioresource		= &kempld_ioresource,
136	.get_hardware_mutex	= kempld_get_hardware_mutex,
137	.release_hardware_mutex	= kempld_release_hardware_mutex,
138	.get_info		= kempld_get_info_generic,
139	.register_cells		= kempld_register_cells_generic,
140};
141
142static struct platform_device *kempld_pdev;
143
144static int kempld_create_platform_device(const struct dmi_system_id *id)
145{
146	struct kempld_platform_data *pdata = id->driver_data;
147	int ret;
148
149	kempld_pdev = platform_device_alloc("kempld", -1);
150	if (!kempld_pdev)
151		return -ENOMEM;
152
153	ret = platform_device_add_data(kempld_pdev, pdata, sizeof(*pdata));
154	if (ret)
155		goto err;
156
157	ret = platform_device_add_resources(kempld_pdev, pdata->ioresource, 1);
158	if (ret)
159		goto err;
160
161	ret = platform_device_add(kempld_pdev);
162	if (ret)
163		goto err;
164
165	return 0;
166err:
167	platform_device_put(kempld_pdev);
168	return ret;
169}
170
171/**
172 * kempld_read8 - read 8 bit register
173 * @pld: kempld_device_data structure describing the PLD
174 * @index: register index on the chip
175 *
176 * kempld_get_mutex must be called prior to calling this function.
177 */
178u8 kempld_read8(struct kempld_device_data *pld, u8 index)
179{
180	iowrite8(index, pld->io_index);
181	return ioread8(pld->io_data);
182}
183EXPORT_SYMBOL_GPL(kempld_read8);
184
185/**
186 * kempld_write8 - write 8 bit register
187 * @pld: kempld_device_data structure describing the PLD
188 * @index: register index on the chip
189 * @data: new register value
190 *
191 * kempld_get_mutex must be called prior to calling this function.
192 */
193void kempld_write8(struct kempld_device_data *pld, u8 index, u8 data)
194{
195	iowrite8(index, pld->io_index);
196	iowrite8(data, pld->io_data);
197}
198EXPORT_SYMBOL_GPL(kempld_write8);
199
200/**
201 * kempld_read16 - read 16 bit register
202 * @pld: kempld_device_data structure describing the PLD
203 * @index: register index on the chip
204 *
205 * kempld_get_mutex must be called prior to calling this function.
206 */
207u16 kempld_read16(struct kempld_device_data *pld, u8 index)
208{
209	return kempld_read8(pld, index) | kempld_read8(pld, index + 1) << 8;
210}
211EXPORT_SYMBOL_GPL(kempld_read16);
212
213/**
214 * kempld_write16 - write 16 bit register
215 * @pld: kempld_device_data structure describing the PLD
216 * @index: register index on the chip
217 * @data: new register value
218 *
219 * kempld_get_mutex must be called prior to calling this function.
220 */
221void kempld_write16(struct kempld_device_data *pld, u8 index, u16 data)
222{
223	kempld_write8(pld, index, (u8)data);
224	kempld_write8(pld, index + 1, (u8)(data >> 8));
225}
226EXPORT_SYMBOL_GPL(kempld_write16);
227
228/**
229 * kempld_read32 - read 32 bit register
230 * @pld: kempld_device_data structure describing the PLD
231 * @index: register index on the chip
232 *
233 * kempld_get_mutex must be called prior to calling this function.
234 */
235u32 kempld_read32(struct kempld_device_data *pld, u8 index)
236{
237	return kempld_read16(pld, index) | kempld_read16(pld, index + 2) << 16;
238}
239EXPORT_SYMBOL_GPL(kempld_read32);
240
241/**
242 * kempld_write32 - write 32 bit register
243 * @pld: kempld_device_data structure describing the PLD
244 * @index: register index on the chip
245 * @data: new register value
246 *
247 * kempld_get_mutex must be called prior to calling this function.
248 */
249void kempld_write32(struct kempld_device_data *pld, u8 index, u32 data)
250{
251	kempld_write16(pld, index, (u16)data);
252	kempld_write16(pld, index + 2, (u16)(data >> 16));
253}
254EXPORT_SYMBOL_GPL(kempld_write32);
255
256/**
257 * kempld_get_mutex - acquire PLD mutex
258 * @pld: kempld_device_data structure describing the PLD
259 */
260void kempld_get_mutex(struct kempld_device_data *pld)
261{
262	struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
263
264	mutex_lock(&pld->lock);
265	pdata->get_hardware_mutex(pld);
266}
267EXPORT_SYMBOL_GPL(kempld_get_mutex);
268
269/**
270 * kempld_release_mutex - release PLD mutex
271 * @pld: kempld_device_data structure describing the PLD
272 */
273void kempld_release_mutex(struct kempld_device_data *pld)
274{
275	struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
276
277	pdata->release_hardware_mutex(pld);
278	mutex_unlock(&pld->lock);
279}
280EXPORT_SYMBOL_GPL(kempld_release_mutex);
281
282/**
283 * kempld_get_info - update device specific information
284 * @pld: kempld_device_data structure describing the PLD
285 *
286 * This function calls the configured board specific kempld_get_info_XXXX
287 * function which is responsible for gathering information about the specific
288 * hardware. The information is then stored within the pld structure.
289 */
290static int kempld_get_info(struct kempld_device_data *pld)
291{
292	int ret;
293	struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
294	char major, minor;
295
296	ret = pdata->get_info(pld);
297	if (ret)
298		return ret;
299
300	/* The Kontron PLD firmware version string has the following format:
301	 * Pwxy.zzzz
302	 *   P:    Fixed
303	 *   w:    PLD number    - 1 hex digit
304	 *   x:    Major version - 1 alphanumerical digit (0-9A-V)
305	 *   y:    Minor version - 1 alphanumerical digit (0-9A-V)
306	 *   zzzz: Build number  - 4 zero padded hex digits */
307
308	if (pld->info.major < 10)
309		major = pld->info.major + '0';
310	else
311		major = (pld->info.major - 10) + 'A';
312	if (pld->info.minor < 10)
313		minor = pld->info.minor + '0';
314	else
315		minor = (pld->info.minor - 10) + 'A';
316
317	ret = scnprintf(pld->info.version, sizeof(pld->info.version),
318			"P%X%c%c.%04X", pld->info.number, major, minor,
319			pld->info.buildnr);
320	if (ret < 0)
321		return ret;
322
323	return 0;
324}
325
326/*
327 * kempld_register_cells - register cell drivers
328 *
329 * This function registers cell drivers for the detected hardware by calling
330 * the configured kempld_register_cells_XXXX function which is responsible
331 * to detect and register the needed cell drivers.
332 */
333static int kempld_register_cells(struct kempld_device_data *pld)
334{
335	struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
336
337	return pdata->register_cells(pld);
338}
339
340static const char *kempld_get_type_string(struct kempld_device_data *pld)
341{
342	const char *version_type;
343
344	switch (pld->info.type) {
345	case 0:
346		version_type = "release";
347		break;
348	case 1:
349		version_type = "debug";
350		break;
351	case 2:
352		version_type = "custom";
353		break;
354	default:
355		version_type = "unspecified";
356		break;
357	}
358
359	return version_type;
360}
361
362static ssize_t kempld_version_show(struct device *dev,
363		struct device_attribute *attr, char *buf)
364{
365	struct kempld_device_data *pld = dev_get_drvdata(dev);
366
367	return scnprintf(buf, PAGE_SIZE, "%s\n", pld->info.version);
368}
369
370static ssize_t kempld_specification_show(struct device *dev,
371		struct device_attribute *attr, char *buf)
372{
373	struct kempld_device_data *pld = dev_get_drvdata(dev);
374
375	return scnprintf(buf, PAGE_SIZE, "%d.%d\n", pld->info.spec_major,
376		       pld->info.spec_minor);
377}
378
379static ssize_t kempld_type_show(struct device *dev,
380		struct device_attribute *attr, char *buf)
381{
382	struct kempld_device_data *pld = dev_get_drvdata(dev);
383
384	return scnprintf(buf, PAGE_SIZE, "%s\n", kempld_get_type_string(pld));
385}
386
387static DEVICE_ATTR(pld_version, S_IRUGO, kempld_version_show, NULL);
388static DEVICE_ATTR(pld_specification, S_IRUGO, kempld_specification_show,
389		   NULL);
390static DEVICE_ATTR(pld_type, S_IRUGO, kempld_type_show, NULL);
391
392static struct attribute *pld_attributes[] = {
393	&dev_attr_pld_version.attr,
394	&dev_attr_pld_specification.attr,
395	&dev_attr_pld_type.attr,
396	NULL
397};
398
399static const struct attribute_group pld_attr_group = {
400	.attrs = pld_attributes,
401};
402
403static int kempld_detect_device(struct kempld_device_data *pld)
404{
405	u8 index_reg;
406	int ret;
407
408	mutex_lock(&pld->lock);
409
410	/* Check for empty IO space */
411	index_reg = ioread8(pld->io_index);
412	if (index_reg == 0xff && ioread8(pld->io_data) == 0xff) {
413		mutex_unlock(&pld->lock);
414		return -ENODEV;
415	}
416
417	/* Release hardware mutex if acquired */
418	if (!(index_reg & KEMPLD_MUTEX_KEY)) {
419		iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
420		/* PXT and COMe-cPC2 boards may require a second release */
421		iowrite8(KEMPLD_MUTEX_KEY, pld->io_index);
422	}
423
424	mutex_unlock(&pld->lock);
425
426	ret = kempld_get_info(pld);
427	if (ret)
428		return ret;
429
430	dev_info(pld->dev, "Found Kontron PLD - %s (%s), spec %d.%d\n",
431		 pld->info.version, kempld_get_type_string(pld),
432		 pld->info.spec_major, pld->info.spec_minor);
433
434	ret = sysfs_create_group(&pld->dev->kobj, &pld_attr_group);
435	if (ret)
436		return ret;
437
438	ret = kempld_register_cells(pld);
439	if (ret)
440		sysfs_remove_group(&pld->dev->kobj, &pld_attr_group);
441
442	return ret;
443}
444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445static int kempld_probe(struct platform_device *pdev)
446{
447	struct kempld_platform_data *pdata = dev_get_platdata(&pdev->dev);
448	struct device *dev = &pdev->dev;
449	struct kempld_device_data *pld;
450	struct resource *ioport;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
452	pld = devm_kzalloc(dev, sizeof(*pld), GFP_KERNEL);
453	if (!pld)
454		return -ENOMEM;
455
456	ioport = platform_get_resource(pdev, IORESOURCE_IO, 0);
457	if (!ioport)
458		return -EINVAL;
459
460	pld->io_base = devm_ioport_map(dev, ioport->start,
461					resource_size(ioport));
462	if (!pld->io_base)
463		return -ENOMEM;
464
465	pld->io_index = pld->io_base;
466	pld->io_data = pld->io_base + 1;
467	pld->pld_clock = pdata->pld_clock;
468	pld->dev = dev;
469
470	mutex_init(&pld->lock);
471	platform_set_drvdata(pdev, pld);
472
473	return kempld_detect_device(pld);
474}
475
476static int kempld_remove(struct platform_device *pdev)
477{
478	struct kempld_device_data *pld = platform_get_drvdata(pdev);
479	struct kempld_platform_data *pdata = dev_get_platdata(pld->dev);
480
481	sysfs_remove_group(&pld->dev->kobj, &pld_attr_group);
482
483	mfd_remove_devices(&pdev->dev);
484	pdata->release_hardware_mutex(pld);
 
485
486	return 0;
487}
 
 
 
 
 
 
488
489static struct platform_driver kempld_driver = {
490	.driver		= {
491		.name	= "kempld",
 
492	},
493	.probe		= kempld_probe,
494	.remove		= kempld_remove,
495};
496
497static const struct dmi_system_id kempld_dmi_table[] __initconst = {
498	{
499		.ident = "BBD6",
500		.matches = {
501			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
502			DMI_MATCH(DMI_BOARD_NAME, "COMe-bBD"),
503		},
504		.driver_data = (void *)&kempld_platform_data_generic,
505		.callback = kempld_create_platform_device,
506	}, {
507		.ident = "BBL6",
508		.matches = {
509			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
510			DMI_MATCH(DMI_BOARD_NAME, "COMe-bBL6"),
511		},
512		.driver_data = (void *)&kempld_platform_data_generic,
513		.callback = kempld_create_platform_device,
514	}, {
 
 
 
 
 
 
 
 
515		.ident = "BHL6",
516		.matches = {
517			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
518			DMI_MATCH(DMI_BOARD_NAME, "COMe-bHL6"),
519		},
520		.driver_data = (void *)&kempld_platform_data_generic,
521		.callback = kempld_create_platform_device,
522	}, {
523		.ident = "BKL6",
524		.matches = {
525			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
526			DMI_MATCH(DMI_BOARD_NAME, "COMe-bKL6"),
527		},
528		.driver_data = (void *)&kempld_platform_data_generic,
529		.callback = kempld_create_platform_device,
530	}, {
531		.ident = "BSL6",
532		.matches = {
533			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
534			DMI_MATCH(DMI_BOARD_NAME, "COMe-bSL6"),
535		},
536		.driver_data = (void *)&kempld_platform_data_generic,
537		.callback = kempld_create_platform_device,
538	}, {
539		.ident = "CAL6",
540		.matches = {
541			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
542			DMI_MATCH(DMI_BOARD_NAME, "COMe-cAL"),
543		},
544		.driver_data = (void *)&kempld_platform_data_generic,
545		.callback = kempld_create_platform_device,
546	}, {
547		.ident = "CBL6",
548		.matches = {
549			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
550			DMI_MATCH(DMI_BOARD_NAME, "COMe-cBL6"),
551		},
552		.driver_data = (void *)&kempld_platform_data_generic,
553		.callback = kempld_create_platform_device,
554	}, {
555		.ident = "CBW6",
556		.matches = {
557			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
558			DMI_MATCH(DMI_BOARD_NAME, "COMe-cBW6"),
559		},
560		.driver_data = (void *)&kempld_platform_data_generic,
561		.callback = kempld_create_platform_device,
562	}, {
563		.ident = "CCR2",
564		.matches = {
565			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
566			DMI_MATCH(DMI_BOARD_NAME, "COMe-bIP2"),
567		},
568		.driver_data = (void *)&kempld_platform_data_generic,
569		.callback = kempld_create_platform_device,
570	}, {
571		.ident = "CCR6",
572		.matches = {
573			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
574			DMI_MATCH(DMI_BOARD_NAME, "COMe-bIP6"),
575		},
576		.driver_data = (void *)&kempld_platform_data_generic,
577		.callback = kempld_create_platform_device,
578	}, {
 
 
 
 
 
 
 
 
579		.ident = "CHL6",
580		.matches = {
581			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
582			DMI_MATCH(DMI_BOARD_NAME, "COMe-cHL6"),
583		},
584		.driver_data = (void *)&kempld_platform_data_generic,
585		.callback = kempld_create_platform_device,
586	}, {
587		.ident = "CHR2",
588		.matches = {
589			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
590			DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-SC T2"),
591		},
592		.driver_data = (void *)&kempld_platform_data_generic,
593		.callback = kempld_create_platform_device,
594	}, {
595		.ident = "CHR2",
596		.matches = {
597			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
598			DMI_MATCH(DMI_BOARD_NAME, "ETXe-SC T2"),
599		},
600		.driver_data = (void *)&kempld_platform_data_generic,
601		.callback = kempld_create_platform_device,
602	}, {
603		.ident = "CHR2",
604		.matches = {
605			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
606			DMI_MATCH(DMI_BOARD_NAME, "COMe-bSC2"),
607		},
608		.driver_data = (void *)&kempld_platform_data_generic,
609		.callback = kempld_create_platform_device,
610	}, {
611		.ident = "CHR6",
612		.matches = {
613			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
614			DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-SC T6"),
615		},
616		.driver_data = (void *)&kempld_platform_data_generic,
617		.callback = kempld_create_platform_device,
618	}, {
619		.ident = "CHR6",
620		.matches = {
621			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
622			DMI_MATCH(DMI_BOARD_NAME, "ETXe-SC T6"),
623		},
624		.driver_data = (void *)&kempld_platform_data_generic,
625		.callback = kempld_create_platform_device,
626	}, {
627		.ident = "CHR6",
628		.matches = {
629			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
630			DMI_MATCH(DMI_BOARD_NAME, "COMe-bSC6"),
631		},
632		.driver_data = (void *)&kempld_platform_data_generic,
633		.callback = kempld_create_platform_device,
634	}, {
635		.ident = "CKL6",
636		.matches = {
637			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
638			DMI_MATCH(DMI_BOARD_NAME, "COMe-cKL6"),
639		},
640		.driver_data = (void *)&kempld_platform_data_generic,
641		.callback = kempld_create_platform_device,
642	}, {
643		.ident = "CNTG",
644		.matches = {
645			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
646			DMI_MATCH(DMI_BOARD_NAME, "ETXexpress-PC"),
647		},
648		.driver_data = (void *)&kempld_platform_data_generic,
649		.callback = kempld_create_platform_device,
650	}, {
651		.ident = "CNTG",
652		.matches = {
653			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
654			DMI_MATCH(DMI_BOARD_NAME, "COMe-bPC2"),
655		},
656		.driver_data = (void *)&kempld_platform_data_generic,
657		.callback = kempld_create_platform_device,
658	}, {
659		.ident = "CNTX",
660		.matches = {
661			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
662			DMI_MATCH(DMI_BOARD_NAME, "PXT"),
663		},
664		.driver_data = (void *)&kempld_platform_data_generic,
665		.callback = kempld_create_platform_device,
666	}, {
667		.ident = "CSL6",
668		.matches = {
669			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
670			DMI_MATCH(DMI_BOARD_NAME, "COMe-cSL6"),
671		},
672		.driver_data = (void *)&kempld_platform_data_generic,
673		.callback = kempld_create_platform_device,
674	}, {
675		.ident = "CVV6",
676		.matches = {
677			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
678			DMI_MATCH(DMI_BOARD_NAME, "COMe-cBT"),
679		},
680		.driver_data = (void *)&kempld_platform_data_generic,
681		.callback = kempld_create_platform_device,
682	}, {
683		.ident = "FRI2",
684		.matches = {
685			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
686			DMI_MATCH(DMI_BIOS_VERSION, "FRI2"),
687		},
688		.driver_data = (void *)&kempld_platform_data_generic,
689		.callback = kempld_create_platform_device,
690	}, {
691		.ident = "FRI2",
692		.matches = {
693			DMI_MATCH(DMI_PRODUCT_NAME, "Fish River Island II"),
694		},
695		.driver_data = (void *)&kempld_platform_data_generic,
696		.callback = kempld_create_platform_device,
697	}, {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
698		.ident = "MAL1",
699		.matches = {
700			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
701			DMI_MATCH(DMI_BOARD_NAME, "COMe-mAL10"),
702		},
703		.driver_data = (void *)&kempld_platform_data_generic,
704		.callback = kempld_create_platform_device,
705	}, {
 
 
 
 
 
 
 
 
706		.ident = "MBR1",
707		.matches = {
708			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
709			DMI_MATCH(DMI_BOARD_NAME, "ETX-OH"),
710		},
711		.driver_data = (void *)&kempld_platform_data_generic,
712		.callback = kempld_create_platform_device,
713	}, {
714		.ident = "MVV1",
715		.matches = {
716			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
717			DMI_MATCH(DMI_BOARD_NAME, "COMe-mBT"),
718		},
719		.driver_data = (void *)&kempld_platform_data_generic,
720		.callback = kempld_create_platform_device,
721	}, {
722		.ident = "NTC1",
723		.matches = {
724			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
725			DMI_MATCH(DMI_BOARD_NAME, "nanoETXexpress-TT"),
726		},
727		.driver_data = (void *)&kempld_platform_data_generic,
728		.callback = kempld_create_platform_device,
729	}, {
730		.ident = "NTC1",
731		.matches = {
732			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
733			DMI_MATCH(DMI_BOARD_NAME, "nETXe-TT"),
734		},
735		.driver_data = (void *)&kempld_platform_data_generic,
736		.callback = kempld_create_platform_device,
737	}, {
738		.ident = "NTC1",
739		.matches = {
740			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
741			DMI_MATCH(DMI_BOARD_NAME, "COMe-mTT"),
742		},
743		.driver_data = (void *)&kempld_platform_data_generic,
744		.callback = kempld_create_platform_device,
745	}, {
746		.ident = "NUP1",
747		.matches = {
748			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
749			DMI_MATCH(DMI_BOARD_NAME, "COMe-mCT"),
750		},
751		.driver_data = (void *)&kempld_platform_data_generic,
752		.callback = kempld_create_platform_device,
753	}, {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
754		.ident = "UNP1",
755		.matches = {
756			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
757			DMI_MATCH(DMI_BOARD_NAME, "microETXexpress-DC"),
758		},
759		.driver_data = (void *)&kempld_platform_data_generic,
760		.callback = kempld_create_platform_device,
761	}, {
762		.ident = "UNP1",
763		.matches = {
764			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
765			DMI_MATCH(DMI_BOARD_NAME, "COMe-cDC2"),
766		},
767		.driver_data = (void *)&kempld_platform_data_generic,
768		.callback = kempld_create_platform_device,
769	}, {
770		.ident = "UNTG",
771		.matches = {
772			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
773			DMI_MATCH(DMI_BOARD_NAME, "microETXexpress-PC"),
774		},
775		.driver_data = (void *)&kempld_platform_data_generic,
776		.callback = kempld_create_platform_device,
777	}, {
778		.ident = "UNTG",
779		.matches = {
780			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
781			DMI_MATCH(DMI_BOARD_NAME, "COMe-cPC2"),
782		},
783		.driver_data = (void *)&kempld_platform_data_generic,
784		.callback = kempld_create_platform_device,
785	}, {
786		.ident = "UUP6",
787		.matches = {
788			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
789			DMI_MATCH(DMI_BOARD_NAME, "COMe-cCT6"),
790		},
791		.driver_data = (void *)&kempld_platform_data_generic,
792		.callback = kempld_create_platform_device,
793	},
794	{
795		.ident = "UTH6",
796		.matches = {
797			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
798			DMI_MATCH(DMI_BOARD_NAME, "COMe-cTH6"),
799		},
800		.driver_data = (void *)&kempld_platform_data_generic,
801		.callback = kempld_create_platform_device,
 
 
 
 
 
 
 
 
802	},
803	{}
804};
805MODULE_DEVICE_TABLE(dmi, kempld_dmi_table);
806
807static int __init kempld_init(void)
808{
809	const struct dmi_system_id *id;
810
811	if (force_device_id[0]) {
812		for (id = kempld_dmi_table;
813		     id->matches[0].slot != DMI_NONE; id++)
814			if (strstr(id->ident, force_device_id))
815				if (id->callback && !id->callback(id))
816					break;
817		if (id->matches[0].slot == DMI_NONE)
818			return -ENODEV;
819	} else {
820		if (!dmi_check_system(kempld_dmi_table))
821			return -ENODEV;
822	}
823
824	return platform_driver_register(&kempld_driver);
825}
826
827static void __exit kempld_exit(void)
828{
829	if (kempld_pdev)
830		platform_device_unregister(kempld_pdev);
831
832	platform_driver_unregister(&kempld_driver);
833}
834
835module_init(kempld_init);
836module_exit(kempld_exit);
837
838MODULE_DESCRIPTION("KEM PLD Core Driver");
839MODULE_AUTHOR("Michael Brunner <michael.brunner@kontron.com>");
840MODULE_LICENSE("GPL");
841MODULE_ALIAS("platform:kempld-core");