Commit e0557c0d authored by Shawn Guo's avatar Shawn Guo

ARM: imx: move platform device code into mach-imx

It moves platform device code from plat-mxc into mach-imx.  Along with
that, header devices-common.h gets moved from plat-mxc/include/mach/
into mach-imx/devices/.
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
Acked-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
parent c45b1342
...@@ -772,3 +772,5 @@ config SOC_IMX6Q ...@@ -772,3 +772,5 @@ config SOC_IMX6Q
This enables support for Freescale i.MX6 Quad processor. This enables support for Freescale i.MX6 Quad processor.
endif endif
source "arch/arm/mach-imx/devices/Kconfig"
...@@ -92,3 +92,5 @@ obj-$(CONFIG_MACH_MX50_RDP) += mach-mx50_rdp.o ...@@ -92,3 +92,5 @@ obj-$(CONFIG_MACH_MX50_RDP) += mach-mx50_rdp.o
obj-$(CONFIG_MACH_IMX51_DT) += imx51-dt.o obj-$(CONFIG_MACH_IMX51_DT) += imx51-dt.o
obj-$(CONFIG_SOC_IMX53) += mach-imx53.o obj-$(CONFIG_SOC_IMX53) += mach-imx53.o
obj-y += devices/
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_imx_fb_data imx1_imx_fb_data; extern const struct imx_imx_fb_data imx1_imx_fb_data;
#define imx1_add_imx_fb(pdata) \ #define imx1_add_imx_fb(pdata) \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_imx21_hcd_data imx21_imx21_hcd_data; extern const struct imx_imx21_hcd_data imx21_imx21_hcd_data;
#define imx21_add_imx21_hcd(pdata) \ #define imx21_add_imx21_hcd(pdata) \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_fec_data imx25_fec_data; extern const struct imx_fec_data imx25_fec_data;
#define imx25_add_fec(pdata) \ #define imx25_add_fec(pdata) \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_fec_data imx27_fec_data; extern const struct imx_fec_data imx27_fec_data;
#define imx27_add_fec(pdata) \ #define imx27_add_fec(pdata) \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_fsl_usb2_udc_data imx31_fsl_usb2_udc_data; extern const struct imx_fsl_usb2_udc_data imx31_fsl_usb2_udc_data;
#define imx31_add_fsl_usb2_udc(pdata) \ #define imx31_add_fsl_usb2_udc(pdata) \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_fec_data imx35_fec_data; extern const struct imx_fec_data imx35_fec_data;
#define imx35_add_fec(pdata) \ #define imx35_add_fec(pdata) \
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_imx_uart_1irq_data imx50_imx_uart_data[]; extern const struct imx_imx_uart_1irq_data imx50_imx_uart_data[];
#define imx50_add_imx_uart(id, pdata) \ #define imx50_add_imx_uart(id, pdata) \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices/devices-common.h"
extern const struct imx_fec_data imx51_fec_data; extern const struct imx_fec_data imx51_fec_data;
#define imx51_add_fec(pdata) \ #define imx51_add_fec(pdata) \
......
obj-y := devices.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_FEC) += platform-fec.o obj-$(CONFIG_IMX_HAVE_PLATFORM_FEC) += platform-fec.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_FLEXCAN) += platform-flexcan.o obj-$(CONFIG_IMX_HAVE_PLATFORM_FLEXCAN) += platform-flexcan.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_FSL_USB2_UDC) += platform-fsl-usb2-udc.o obj-$(CONFIG_IMX_HAVE_PLATFORM_FSL_USB2_UDC) += platform-fsl-usb2-udc.o
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <asm/sizes.h> #include <asm/sizes.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_ahci_imx_data_entry_single(soc, _devid) \ #define imx_ahci_imx_data_entry_single(soc, _devid) \
{ \ { \
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <asm/sizes.h> #include <asm/sizes.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_fec_data_entry_single(soc, _devid) \ #define imx_fec_data_entry_single(soc, _devid) \
{ \ { \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_flexcan_data_entry_single(soc, _id, _hwid, _size) \ #define imx_flexcan_data_entry_single(soc, _id, _hwid, _size) \
{ \ { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_fsl_usb2_udc_data_entry_single(soc) \ #define imx_fsl_usb2_udc_data_entry_single(soc) \
{ \ { \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices-common.h"
struct platform_device *__init mxc_register_gpio(char *name, int id, struct platform_device *__init mxc_register_gpio(char *name, int id,
resource_size_t iobase, resource_size_t iosize, int irq, int irq_high) resource_size_t iobase, resource_size_t iosize, int irq, int irq_high)
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
*/ */
#include <asm/sizes.h> #include <asm/sizes.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
struct platform_device *__init imx_add_gpio_keys( struct platform_device *__init imx_add_gpio_keys(
const struct gpio_keys_platform_data *pdata) const struct gpio_keys_platform_data *pdata)
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the terms of the GNU General Public License version 2 as published by the * the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/devices-common.h> #include "devices-common.h"
struct platform_device __init __maybe_unused *imx_add_imx_dma(void) struct platform_device __init __maybe_unused *imx_add_imx_dma(void)
{ {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx_fb_data_entry_single(soc, _size) \ #define imx_imx_fb_data_entry_single(soc, _size) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx_i2c_data_entry_single(soc, _id, _hwid, _size) \ #define imx_imx_i2c_data_entry_single(soc, _id, _hwid, _size) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx_keypad_data_entry_single(soc, _size) \ #define imx_imx_keypad_data_entry_single(soc, _size) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx_ssi_data_entry(soc, _id, _hwid, _size) \ #define imx_imx_ssi_data_entry(soc, _id, _hwid, _size) \
[_id] = { \ [_id] = { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx_uart_3irq_data_entry(soc, _id, _hwid, _size) \ #define imx_imx_uart_3irq_data_entry(soc, _id, _hwid, _size) \
[_id] = { \ [_id] = { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <asm/sizes.h> #include <asm/sizes.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx2_wdt_data_entry_single(soc, _id, _hwid, _size) \ #define imx_imx2_wdt_data_entry_single(soc, _id, _hwid, _size) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx21_hcd_data_entry_single(soc) \ #define imx_imx21_hcd_data_entry_single(soc) \
{ \ { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#ifdef CONFIG_SOC_IMX27 #ifdef CONFIG_SOC_IMX27
const struct imx_imx27_coda_data imx27_coda_data __initconst = { const struct imx_imx27_coda_data imx27_coda_data __initconst = {
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imx_udc_data_entry_single(soc, _size) \ #define imx_imx_udc_data_entry_single(soc, _size) \
{ \ { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <asm/sizes.h> #include <asm/sizes.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_imxdi_rtc_data_entry_single(soc) \ #define imx_imxdi_rtc_data_entry_single(soc) \
{ \ { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_ipu_core_entry_single(soc) \ #define imx_ipu_core_entry_single(soc) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mx1_camera_data_entry_single(soc, _size) \ #define imx_mx1_camera_data_entry_single(soc, _size) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mx2_camera_data_entry_single(soc) \ #define imx_mx2_camera_data_entry_single(soc) \
{ \ { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mxc_ehci_data_entry_single(soc, _id, hs) \ #define imx_mxc_ehci_data_entry_single(soc, _id, hs) \
{ \ { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mxc_mmc_data_entry_single(soc, _id, _hwid, _size) \ #define imx_mxc_mmc_data_entry_single(soc, _id, _hwid, _size) \
{ \ { \
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <asm/sizes.h> #include <asm/sizes.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mxc_nand_data_entry_single(soc, _size) \ #define imx_mxc_nand_data_entry_single(soc, _size) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mxc_pwm_data_entry_single(soc, _id, _hwid, _size) \ #define imx_mxc_pwm_data_entry_single(soc, _id, _hwid, _size) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
struct imx_mxc_rnga_data { struct imx_mxc_rnga_data {
resource_size_t iobase; resource_size_t iobase;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mxc_rtc_data_entry_single(soc) \ #define imx_mxc_rtc_data_entry_single(soc) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_mxc_w1_data_entry_single(soc) \ #define imx_mxc_w1_data_entry_single(soc) \
{ \ { \
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_pata_imx_data_entry_single(soc, _size) \ #define imx_pata_imx_data_entry_single(soc, _size) \
{ \ { \
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h>
#include <linux/platform_data/mmc-esdhc-imx.h> #include <linux/platform_data/mmc-esdhc-imx.h>
#include "devices-common.h"
#define imx_sdhci_esdhc_imx_data_entry_single(soc, _devid, _id, hwid) \ #define imx_sdhci_esdhc_imx_data_entry_single(soc, _devid, _id, hwid) \
{ \ { \
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Free Software Foundation. * Free Software Foundation.
*/ */
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h> #include "devices-common.h"
#define imx_spi_imx_data_entry_single(soc, type, _devid, _id, hwid, _size) \ #define imx_spi_imx_data_entry_single(soc, type, _devid, _id, hwid, _size) \
{ \ { \
......
...@@ -23,10 +23,10 @@ ...@@ -23,10 +23,10 @@
#include <linux/pinctrl/machine.h> #include <linux/pinctrl/machine.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/common.h> #include <mach/common.h>
#include <mach/devices-common.h>
#include <asm/pgtable.h> #include <asm/pgtable.h>
#include <asm/mach/map.h> #include <asm/mach/map.h>
#include "devices/devices-common.h"
#include "iomux-v1.h" #include "iomux-v1.h"
/* MX21 memory map definition */ /* MX21 memory map definition */
......
...@@ -25,10 +25,10 @@ ...@@ -25,10 +25,10 @@
#include <asm/mach/map.h> #include <asm/mach/map.h>
#include <mach/common.h> #include <mach/common.h>
#include <mach/devices-common.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/mx25.h> #include <mach/mx25.h>
#include "devices/devices-common.h"
#include "iomux-v3.h" #include "iomux-v3.h"
/* /*
......
...@@ -23,10 +23,10 @@ ...@@ -23,10 +23,10 @@
#include <linux/pinctrl/machine.h> #include <linux/pinctrl/machine.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/common.h> #include <mach/common.h>
#include <mach/devices-common.h>
#include <asm/pgtable.h> #include <asm/pgtable.h>
#include <asm/mach/map.h> #include <asm/mach/map.h>
#include "devices/devices-common.h"
#include "iomux-v1.h" #include "iomux-v1.h"
/* MX27 memory map definition */ /* MX27 memory map definition */
......
...@@ -27,10 +27,10 @@ ...@@ -27,10 +27,10 @@
#include <asm/mach/map.h> #include <asm/mach/map.h>
#include <mach/common.h> #include <mach/common.h>
#include <mach/devices-common.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include "crmregs-imx3.h" #include "crmregs-imx3.h"
#include "devices/devices-common.h"
#include "iomux-v3.h" #include "iomux-v3.h"
void __iomem *mx3_ccm_base; void __iomem *mx3_ccm_base;
......
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/common.h> #include <mach/common.h>
#include <mach/devices-common.h>
#include "devices/devices-common.h"
#include "iomux-v3.h" #include "iomux-v3.h"
/* /*
......
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
#include <linux/io.h> #include <linux/io.h>
#include <mach/common.h> #include <mach/common.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/devices-common.h>
#include "crmregs-imx3.h" #include "crmregs-imx3.h"
#include "devices/devices-common.h"
/* /*
* Set cpu low power mode before WFI instruction. This function is called * Set cpu low power mode before WFI instruction. This function is called
......
if ARCH_MXC if ARCH_MXC
source "arch/arm/plat-mxc/devices/Kconfig"
menu "Freescale MXC Implementations" menu "Freescale MXC Implementations"
choice choice
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# #
# Common support # Common support
obj-y := time.o devices.o cpu.o system.o irq-common.o obj-y := time.o cpu.o system.o irq-common.o
obj-$(CONFIG_MXC_TZIC) += tzic.o obj-$(CONFIG_MXC_TZIC) += tzic.o
obj-$(CONFIG_MXC_AVIC) += avic.o obj-$(CONFIG_MXC_AVIC) += avic.o
...@@ -18,5 +18,3 @@ ifdef CONFIG_SND_IMX_SOC ...@@ -18,5 +18,3 @@ ifdef CONFIG_SND_IMX_SOC
obj-y += ssi-fiq.o obj-y += ssi-fiq.o
obj-y += ssi-fiq-ksym.o obj-y += ssi-fiq-ksym.o
endif endif
obj-y += devices/
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment