|
@@ -0,0 +1,66 @@
|
|
|
+/*
|
|
|
+ * Copyright (C) 2009-2010 Pengutronix
|
|
|
+ * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
|
|
|
+ *
|
|
|
+ * This program is free software; you can redistribute it and/or modify it under
|
|
|
+ * the terms of the GNU General Public License version 2 as published by the
|
|
|
+ * Free Software Foundation.
|
|
|
+ */
|
|
|
+#include <linux/kernel.h>
|
|
|
+#include <linux/platform_device.h>
|
|
|
+#include <linux/init.h>
|
|
|
+#include <linux/platform_data/dma-imx-sdma.h>
|
|
|
+
|
|
|
+extern struct device mxc_aips_bus;
|
|
|
+extern struct device mxc_ahb_bus;
|
|
|
+
|
|
|
+static inline struct platform_device *imx_add_platform_device_dmamask(
|
|
|
+ const char *name, int id,
|
|
|
+ const struct resource *res, unsigned int num_resources,
|
|
|
+ const void *data, size_t size_data, u64 dmamask)
|
|
|
+{
|
|
|
+ struct platform_device_info pdevinfo = {
|
|
|
+ .name = name,
|
|
|
+ .id = id,
|
|
|
+ .res = res,
|
|
|
+ .num_res = num_resources,
|
|
|
+ .data = data,
|
|
|
+ .size_data = size_data,
|
|
|
+ .dma_mask = dmamask,
|
|
|
+ };
|
|
|
+ return platform_device_register_full(&pdevinfo);
|
|
|
+}
|
|
|
+
|
|
|
+static inline struct platform_device *imx_add_platform_device(
|
|
|
+ const char *name, int id,
|
|
|
+ const struct resource *res, unsigned int num_resources,
|
|
|
+ const void *data, size_t size_data)
|
|
|
+{
|
|
|
+ return imx_add_platform_device_dmamask(
|
|
|
+ name, id, res, num_resources, data, size_data, 0);
|
|
|
+}
|
|
|
+
|
|
|
+#include <linux/fec.h>
|
|
|
+struct imx_fec_data {
|
|
|
+ const char *devid;
|
|
|
+ resource_size_t iobase;
|
|
|
+ resource_size_t irq;
|
|
|
+};
|
|
|
+struct platform_device *__init imx_add_fec(
|
|
|
+ const struct imx_fec_data *data,
|
|
|
+ const struct fec_platform_data *pdata);
|
|
|
+
|
|
|
+#include <linux/can/platform/flexcan.h>
|
|
|
+struct imx_flexcan_data {
|
|
|
+ int id;
|
|
|
+ resource_size_t iobase;
|
|
|
+ resource_size_t iosize;
|
|
|
+ resource_size_t irq;
|
|
|
+};
|
|
|
+struct platform_device *__init imx_add_flexcan(
|
|
|
+ const struct imx_flexcan_data *data,
|
|
|
+ const struct flexcan_platform_data *pdata);
|
|
|
+
|
|
|
+#include <linux/fsl_devices.h>
|
|
|
+struct imx_fsl_usb2_udc_data {
|
|
|
+ const char *devid;
|