Driver/IFC: Move Freescale IFC driver to a common driver
Freescale IFC controller has been used for mpc8xxx. It will be used for ARM-based SoC as well. This patch moves the driver to driver/misc and fix the header file includes. Signed-off-by: York Sun <yorksun@freescale.com>
This commit is contained in:
parent
00ec3fd211
commit
0b66513b27
@ -17,7 +17,7 @@
|
|||||||
#include <asm/cache.h>
|
#include <asm/cache.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/mmu.h>
|
#include <asm/mmu.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <asm/fsl_law.h>
|
#include <asm/fsl_law.h>
|
||||||
#include <asm/fsl_lbc.h>
|
#include <asm/fsl_lbc.h>
|
||||||
#include <post.h>
|
#include <post.h>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/global_data.h>
|
#include <asm/global_data.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
@ -25,7 +25,6 @@ obj-y += cpu.o
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
||||||
obj-$(CONFIG_FSL_IFC) += fsl_ifc.o
|
|
||||||
obj-$(CONFIG_FSL_LBC) += fsl_lbc.o
|
obj-$(CONFIG_FSL_LBC) += fsl_lbc.o
|
||||||
obj-$(CONFIG_SYS_SRIO) += srio.o
|
obj-$(CONFIG_SYS_SRIO) += srio.o
|
||||||
obj-$(CONFIG_FSL_LAW) += law.o
|
obj-$(CONFIG_FSL_LAW) += law.o
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <asm/types.h>
|
#include <asm/types.h>
|
||||||
#include <asm/fsl_dma.h>
|
#include <asm/fsl_dma.h>
|
||||||
#include <asm/fsl_i2c.h>
|
#include <asm/fsl_i2c.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <asm/fsl_lbc.h>
|
#include <asm/fsl_lbc.h>
|
||||||
#include <asm/fsl_fman.h>
|
#include <asm/fsl_fman.h>
|
||||||
#include <fsl_immap.h>
|
#include <fsl_immap.h>
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include <tsec.h>
|
#include <tsec.h>
|
||||||
#include <mmc.h>
|
#include <mmc.h>
|
||||||
#include <netdev.h>
|
#include <netdev.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <hwconfig.h>
|
#include <hwconfig.h>
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
#include <fsl_ddr_sdram.h>
|
#include <fsl_ddr_sdram.h>
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#include <mmc.h>
|
#include <mmc.h>
|
||||||
#include <netdev.h>
|
#include <netdev.h>
|
||||||
#include <pci.h>
|
#include <pci.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <asm/fsl_pci.h>
|
#include <asm/fsl_pci.h>
|
||||||
|
|
||||||
#include "cpld.h"
|
#include "cpld.h"
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
#include <netdev.h>
|
#include <netdev.h>
|
||||||
#include <pci.h>
|
#include <pci.h>
|
||||||
#include <asm/fsl_serdes.h>
|
#include <asm/fsl_serdes.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <asm/fsl_pci.h>
|
#include <asm/fsl_pci.h>
|
||||||
#include <hwconfig.h>
|
#include <hwconfig.h>
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
|
@ -20,3 +20,4 @@ obj-$(CONFIG_NS87308) += ns87308.o
|
|||||||
obj-$(CONFIG_PDSP188x) += pdsp188x.o
|
obj-$(CONFIG_PDSP188x) += pdsp188x.o
|
||||||
obj-$(CONFIG_STATUS_LED) += status_led.o
|
obj-$(CONFIG_STATUS_LED) += status_led.o
|
||||||
obj-$(CONFIG_TWL4030_LED) += twl4030_led.o
|
obj-$(CONFIG_TWL4030_LED) += twl4030_led.o
|
||||||
|
obj-$(CONFIG_FSL_IFC) += fsl_ifc.o
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
|
|
||||||
void print_ifc_regs(void)
|
void print_ifc_regs(void)
|
||||||
{
|
{
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/errno.h>
|
#include <asm/errno.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
|
|
||||||
#define FSL_IFC_V1_1_0 0x01010000
|
#define FSL_IFC_V1_1_0 0x01010000
|
||||||
#define MAX_BANKS 4
|
#define MAX_BANKS 4
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/fsl_ifc.h>
|
#include <fsl_ifc.h>
|
||||||
#include <linux/mtd/nand.h>
|
#include <linux/mtd/nand.h>
|
||||||
|
|
||||||
static inline int is_blank(uchar *addr, int page_size)
|
static inline int is_blank(uchar *addr, int page_size)
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
* SPDX-License-Identifier: GPL-2.0+
|
* SPDX-License-Identifier: GPL-2.0+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __ASM_PPC_FSL_IFC_H
|
#ifndef __FSL_IFC_H
|
||||||
#define __ASM_PPC_FSL_IFC_H
|
#define __FSL_IFC_H
|
||||||
|
|
||||||
#ifdef CONFIG_FSL_IFC
|
#ifdef CONFIG_FSL_IFC
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
@ -983,4 +983,4 @@ struct fsl_ifc {
|
|||||||
#endif /* CONFIG_FSL_IFC */
|
#endif /* CONFIG_FSL_IFC */
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
#endif /* __ASM_PPC_FSL_IFC_H */
|
#endif /* __FSL_IFC_H */
|
Loading…
Reference in New Issue
Block a user