mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
This commit is contained in:
commit
39632b4a01
291 changed files with 1997 additions and 1810 deletions
|
@ -0,0 +1,22 @@
|
|||
Broadcom STB wake-up Timer
|
||||
|
||||
The Broadcom STB wake-up timer provides a 27Mhz resolution timer, with the
|
||||
ability to wake up the system from low-power suspend/standby modes.
|
||||
|
||||
Required properties:
|
||||
- compatible : should contain "brcm,brcmstb-waketimer"
|
||||
- reg : the register start and length for the WKTMR block
|
||||
- interrupts : The TIMER interrupt
|
||||
- interrupt-parent: The phandle to the Always-On (AON) Power Management (PM) L2
|
||||
interrupt controller node
|
||||
- clocks : The phandle to the UPG fixed clock (27Mhz domain)
|
||||
|
||||
Example:
|
||||
|
||||
waketimer@f0411580 {
|
||||
compatible = "brcm,brcmstb-waketimer";
|
||||
reg = <0xf0411580 0x14>;
|
||||
interrupts = <0x3>;
|
||||
interrupt-parent = <&aon_pm_l2_intc>;
|
||||
clocks = <&upg_fixed>;
|
||||
};
|
|
@ -96,11 +96,11 @@ F: arch/arm/cpu/arm1136/mx*/
|
|||
F: arch/arm/cpu/arm926ejs/mx*/
|
||||
F: arch/arm/cpu/armv7/mx*/
|
||||
F: arch/arm/cpu/armv7/vf610/
|
||||
F: arch/arm/imx-common/
|
||||
F: arch/arm/mach-imx/
|
||||
F: arch/arm/include/asm/arch-imx/
|
||||
F: arch/arm/include/asm/arch-mx*/
|
||||
F: arch/arm/include/asm/arch-vf610/
|
||||
F: arch/arm/include/asm/imx-common/
|
||||
F: arch/arm/include/asm/mach-imx/
|
||||
F: board/freescale/*mx*/
|
||||
|
||||
ARM HISILICON
|
||||
|
|
6
Makefile
6
Makefile
|
@ -899,7 +899,7 @@ u-boot.bin: u-boot-nodtb.bin FORCE
|
|||
endif
|
||||
|
||||
%.imx: %.bin
|
||||
$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
|
||||
$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
|
||||
|
||||
%.vyb: %.imx
|
||||
$(Q)$(MAKE) $(build)=arch/arm/cpu/armv7/vf610 $@
|
||||
|
@ -1064,10 +1064,10 @@ tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin FORCE
|
|||
$(call if_changed,pad_cat)
|
||||
|
||||
SPL: spl/u-boot-spl.bin FORCE
|
||||
$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
|
||||
$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
|
||||
|
||||
u-boot-with-spl.imx u-boot-with-nand-spl.imx: SPL u-boot.bin FORCE
|
||||
$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
|
||||
$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
|
||||
|
||||
MKIMAGEFLAGS_u-boot.ubl = -n $(UBL_CONFIG) -T ublimage -e $(CONFIG_SYS_TEXT_BASE)
|
||||
|
||||
|
|
|
@ -1098,13 +1098,13 @@ source "arch/arm/mach-mvebu/Kconfig"
|
|||
|
||||
source "arch/arm/cpu/armv7/ls102xa/Kconfig"
|
||||
|
||||
source "arch/arm/cpu/armv7/mx7ulp/Kconfig"
|
||||
source "arch/arm/mach-imx/mx7ulp/Kconfig"
|
||||
|
||||
source "arch/arm/cpu/armv7/mx7/Kconfig"
|
||||
source "arch/arm/mach-imx/mx7/Kconfig"
|
||||
|
||||
source "arch/arm/cpu/armv7/mx6/Kconfig"
|
||||
source "arch/arm/mach-imx/mx6/Kconfig"
|
||||
|
||||
source "arch/arm/cpu/armv7/mx5/Kconfig"
|
||||
source "arch/arm/mach-imx/mx5/Kconfig"
|
||||
|
||||
source "arch/arm/mach-omap2/Kconfig"
|
||||
|
||||
|
@ -1144,7 +1144,7 @@ source "arch/arm/cpu/armv8/zynqmp/Kconfig"
|
|||
|
||||
source "arch/arm/cpu/armv8/Kconfig"
|
||||
|
||||
source "arch/arm/imx-common/Kconfig"
|
||||
source "arch/arm/mach-imx/Kconfig"
|
||||
|
||||
source "board/aries/m28evk/Kconfig"
|
||||
source "board/bosch/shc/Kconfig"
|
||||
|
|
|
@ -96,11 +96,11 @@ libs-y += arch/arm/lib/
|
|||
|
||||
ifeq ($(CONFIG_SPL_BUILD),y)
|
||||
ifneq (,$(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_MX35)$(filter $(SOC), mx25 mx5 mx6 mx7 mx35))
|
||||
libs-y += arch/arm/imx-common/
|
||||
libs-y += arch/arm/mach-imx/
|
||||
endif
|
||||
else
|
||||
ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx7 mx7ulp mx31 mx35 mxs vf610))
|
||||
libs-y += arch/arm/imx-common/
|
||||
libs-y += arch/arm/mach-imx/
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <asm/arch/imx-regs.h>
|
||||
#include <asm/arch/clock.h>
|
||||
#include <asm/arch/gpio.h>
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
#ifdef CONFIG_MMC_MXC
|
||||
#include <asm/arch/mxcmmc.h>
|
||||
#endif
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <linux/errno.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/arch/clock.h>
|
||||
#include <asm/imx-common/dma.h>
|
||||
#include <asm/mach-imx/dma.h>
|
||||
#include <asm/arch/gpio.h>
|
||||
#include <asm/arch/iomux.h>
|
||||
#include <asm/arch/imx-regs.h>
|
||||
|
|
|
@ -33,10 +33,6 @@ obj-$(if $(filter bcm281xx,$(SOC)),y) += bcm281xx/
|
|||
obj-$(if $(filter bcmcygnus,$(SOC)),y) += bcmcygnus/
|
||||
obj-$(if $(filter bcmnsp,$(SOC)),y) += bcmnsp/
|
||||
obj-$(if $(filter ls102xa,$(SOC)),y) += ls102xa/
|
||||
obj-$(if $(filter mx5,$(SOC)),y) += mx5/
|
||||
obj-$(CONFIG_MX6) += mx6/
|
||||
obj-$(CONFIG_MX7) += mx7/
|
||||
obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
|
||||
obj-$(CONFIG_RMOBILE) += rmobile/
|
||||
obj-$(if $(filter stv0991,$(SOC)),y) += stv0991/
|
||||
obj-$(CONFIG_ARCH_SUNXI) += sunxi/
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <asm/arch/imx-regs.h>
|
||||
#include <asm/arch/clock.h>
|
||||
#include <asm/arch/crm_regs.h>
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
#include <netdev.h>
|
||||
#ifdef CONFIG_FSL_ESDHC
|
||||
#include <fsl_esdhc.h>
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
#ifndef __ASM_ARCH_MX25_GPIO_H
|
||||
#define __ASM_ARCH_MX25_GPIO_H
|
||||
|
||||
#include <asm/imx-common/gpio.h>
|
||||
#include <asm/mach-imx/gpio.h>
|
||||
|
||||
#endif
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#ifndef __IOMUX_MX25_H__
|
||||
#define __IOMUX_MX25_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
/* Pad control groupings */
|
||||
#define MX25_KPP_ROW_PAD_CTRL PAD_CTL_PUS_100K_UP
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
#ifndef __ASM_ARCH_MX31_GPIO_H
|
||||
#define __ASM_ARCH_MX31_GPIO_H
|
||||
|
||||
#include <asm/imx-common/gpio.h>
|
||||
#include <asm/mach-imx/gpio.h>
|
||||
|
||||
#endif
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#ifndef _MX31_SYS_PROTO_H_
|
||||
#define _MX31_SYS_PROTO_H_
|
||||
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
||||
struct mxc_weimcs {
|
||||
u32 upper;
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
#ifndef __ASM_ARCH_MX35_GPIO_H
|
||||
#define __ASM_ARCH_MX35_GPIO_H
|
||||
|
||||
#include <asm/imx-common/gpio.h>
|
||||
#include <asm/mach-imx/gpio.h>
|
||||
|
||||
#endif
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef __IOMUX_MX35_H__
|
||||
#define __IOMUX_MX35_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
/*
|
||||
* The naming convention for the pad modes is MX35_PAD_<padname>__<padmode>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#ifndef _MX35_SYS_PROTO_H_
|
||||
#define _MX35_SYS_PROTO_H_
|
||||
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
||||
void mx3_setup_sdram_bank(u32 start_address, u32 ddr2_config, u32 row,
|
||||
u32 col, u32 dsize, u32 refresh);
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
#ifndef __ASM_ARCH_MX5_GPIO_H
|
||||
#define __ASM_ARCH_MX5_GPIO_H
|
||||
|
||||
#include <asm/imx-common/gpio.h>
|
||||
#include <asm/mach-imx/gpio.h>
|
||||
|
||||
#endif
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef __IOMUX_MX51_H__
|
||||
#define __IOMUX_MX51_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
/* Pad control groupings */
|
||||
#define MX51_UART_PAD_CTRL (PAD_CTL_PUS_100K_DOWN | PAD_CTL_DSE_HIGH | \
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef __IOMUX_MX53_H__
|
||||
#define __IOMUX_MX53_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
/* Pad control groupings */
|
||||
#define MX53_UART_PAD_CTRL (PAD_CTL_PUS_100K_DOWN | PAD_CTL_DSE_HIGH | \
|
||||
|
|
|
@ -5,4 +5,4 @@
|
|||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
#ifndef __ASM_ARCH_MX6_GPIO_H
|
||||
#define __ASM_ARCH_MX6_GPIO_H
|
||||
|
||||
#include <asm/imx-common/gpio.h>
|
||||
#include <asm/mach-imx/gpio.h>
|
||||
|
||||
#endif /* __ASM_ARCH_MX6_GPIO_H */
|
||||
|
|
|
@ -359,7 +359,7 @@
|
|||
#endif
|
||||
#define FEC_QUIRK_ENET_MAC
|
||||
|
||||
#include <asm/imx-common/regs-lcdif.h>
|
||||
#include <asm/mach-imx/regs-lcdif.h>
|
||||
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
|
||||
#include <asm/types.h>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef __ASM_ARCH_MX6_PINS_H__
|
||||
#define __ASM_ARCH_MX6_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
#define MX6_PAD_DECLARE(prefix, name, pco, mc, mm, sio, si, pc) \
|
||||
prefix##name = IOMUX_PAD(pco, mc, mm, sio, si, pc)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef __ASM_ARCH_MX6_MX6SL_PINS_H__
|
||||
#define __ASM_ARCH_MX6_MX6SL_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
enum {
|
||||
MX6_PAD_ECSPI1_MISO__ECSPI_MISO = IOMUX_PAD(0x0358, 0x0068, 0, 0x0684, 0, 0),
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef __ASM_ARCH_IMX6SLL_PINS_H__
|
||||
#define __ASM_ARCH_IMX6SLL_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
enum {
|
||||
MX6_PAD_WDOG_B__WDOG1_B = IOMUX_PAD(0x02DC, 0x0014, 0, 0x0000, 0, 0),
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef __ASM_ARCH_MX6_MX6_PINS_H__
|
||||
#define __ASM_ARCH_MX6_MX6_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
enum {
|
||||
MX6_PAD_GPIO1_IO00__I2C1_SCL = IOMUX_PAD(0x035C, 0x0014, IOMUX_CONFIG_SION | 0, 0x07A8, 1, 0),
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef __ASM_ARCH_IMX6UL_PINS_H__
|
||||
#define __ASM_ARCH_IMX6UL_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
enum {
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef __ASM_ARCH_IMX6ULL_PINS_H__
|
||||
#define __ASM_ARCH_IMX6ULL_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
enum {
|
||||
MX6_PAD_BOOT_MODE0__GPIO5_IO10 = IOMUX_PAD(0x0044, 0x0000, IOMUX_CONFIG_LPSR | 5, 0x0000, 0, 0),
|
||||
|
|
|
@ -5,4 +5,4 @@
|
|||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
#ifndef __ASM_ARCH_MX7_GPIO_H
|
||||
#define __ASM_ARCH_MX7_GPIO_H
|
||||
|
||||
#include <asm/imx-common/gpio.h>
|
||||
#include <asm/mach-imx/gpio.h>
|
||||
|
||||
#endif /* __ASM_ARCH_MX7_GPIO_H */
|
||||
|
|
|
@ -224,7 +224,7 @@
|
|||
CONFIG_SYS_FSL_JR0_OFFSET)
|
||||
#define CONFIG_SYS_FSL_MAX_NUM_OF_SEC 1
|
||||
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
|
||||
#include <asm/imx-common/regs-lcdif.h>
|
||||
#include <asm/mach-imx/regs-lcdif.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
extern void imx_get_mac_from_fuse(int dev_id, unsigned char *mac);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef __ASM_ARCH_MX7_PINS_H__
|
||||
#define __ASM_ARCH_MX7_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
#if defined(CONFIG_MX7D)
|
||||
#include "mx7d_pins.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef __ASM_ARCH_IMX7D_PINS_H__
|
||||
#define __ASM_ARCH_IMX7D_PINS_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
enum {
|
||||
MX7D_PAD_GPIO1_IO00__GPIO1_IO0 = IOMUX_PAD(0x0030, 0x0000, IOMUX_CONFIG_LPSR | 0, 0x0000, 0, 0),
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
||||
void set_wdog_reset(struct wdog_regs *wdog);
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef _SYS_PROTO_MX7ULP_H_
|
||||
#define _SYS_PROTO_MX7ULP_H_
|
||||
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
||||
#define BT0CFG_LPBOOT_MASK 0x1
|
||||
#define BT0CFG_DUALBOOT_MASK 0x2
|
||||
|
|
|
@ -10,12 +10,12 @@
|
|||
#ifndef __IMX_REGS_H__
|
||||
#define __IMX_REGS_H__
|
||||
|
||||
#include <asm/imx-common/regs-apbh.h>
|
||||
#include <asm/mach-imx/regs-apbh.h>
|
||||
#include <asm/arch/regs-base.h>
|
||||
#include <asm/imx-common/regs-bch.h>
|
||||
#include <asm/mach-imx/regs-bch.h>
|
||||
#include <asm/arch/regs-digctl.h>
|
||||
#include <asm/imx-common/regs-gpmi.h>
|
||||
#include <asm/imx-common/regs-lcdif.h>
|
||||
#include <asm/mach-imx/regs-gpmi.h>
|
||||
#include <asm/mach-imx/regs-lcdif.h>
|
||||
#include <asm/arch/regs-i2c.h>
|
||||
#include <asm/arch/regs-lradc.h>
|
||||
#include <asm/arch/regs-ocotp.h>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __MX23_REGS_CLKCTRL_H__
|
||||
#define __MX23_REGS_CLKCTRL_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_clkctrl_regs {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __MX28_REGS_CLKCTRL_H__
|
||||
#define __MX28_REGS_CLKCTRL_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_clkctrl_regs {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#ifndef __MX28_REGS_DIGCTL_H__
|
||||
#define __MX28_REGS_DIGCTL_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_digctl_regs {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef __MX28_REGS_I2C_H__
|
||||
#define __MX28_REGS_I2C_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_i2c_regs {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __MX28_REGS_LRADC_H__
|
||||
#define __MX28_REGS_LRADC_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_lradc_regs {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __MX28_REGS_OCOTP_H__
|
||||
#define __MX28_REGS_OCOTP_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_ocotp_regs {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __MX28_REGS_PINCTRL_H__
|
||||
#define __MX28_REGS_PINCTRL_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_pinctrl_regs {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#ifndef __MX23_REGS_POWER_H__
|
||||
#define __MX23_REGS_POWER_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_power_regs {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#ifndef __MX28_REGS_POWER_H__
|
||||
#define __MX28_REGS_POWER_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_power_regs {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef __MX28_REGS_RTC_H__
|
||||
#define __MX28_REGS_RTC_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_rtc_regs {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#ifndef __MX28_REGS_SSP_H__
|
||||
#define __MX28_REGS_SSP_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
#if defined(CONFIG_MX23)
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#ifndef __MX28_REGS_TIMROT_H__
|
||||
#define __MX28_REGS_TIMROT_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_timrot_regs {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#ifndef __ARCH_ARM___MXS_UARTAPP_H
|
||||
#define __ARCH_ARM___MXS_UARTAPP_H
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_uartapp_regs {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef __MXS_SYS_PROTO_H__
|
||||
#define __MXS_SYS_PROTO_H__
|
||||
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
||||
int mxsmmc_initialize(bd_t *bis, int id, int (*wp)(int), int (*cd)(int));
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef __IOMUX_VF610_H__
|
||||
#define __IOMUX_VF610_H__
|
||||
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
/* Pad control groupings */
|
||||
#define VF610_UART_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_DSE_25ohm | \
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef __ASM_ARCH_MXC_MXC_I2C_H__
|
||||
#define __ASM_ARCH_MXC_MXC_I2C_H__
|
||||
#include <asm-generic/gpio.h>
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
|
||||
struct i2c_pin_ctrl {
|
||||
iomux_v3_cfg_t i2c_mode;
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __REGS_APBH_H__
|
||||
#define __REGS_APBH_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __MX28_REGS_BCH_H__
|
||||
#define __MX28_REGS_BCH_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_bch_regs {
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef __MX28_REGS_GPMI_H__
|
||||
#define __MX28_REGS_GPMI_H__
|
||||
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct mxs_gpmi_regs {
|
|
@ -14,7 +14,7 @@
|
|||
#define __IMX_REGS_LCDIF_H__
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
struct mxs_lcdif_regs {
|
||||
mxs_reg_32(hw_lcdif_ctrl) /* 0x00 */
|
|
@ -9,7 +9,7 @@
|
|||
#define _SYS_PROTO_H_
|
||||
|
||||
#include <asm/io.h>
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
#include <common.h>
|
||||
#include "../arch-imx/cpu.h"
|
||||
|
|
@ -120,3 +120,9 @@ spl/u-boot-nand-spl.imx: SPL FORCE
|
|||
$(call if_changed,u-boot-nand-spl_imx)
|
||||
|
||||
targets += $(addprefix ../../../,$(IMX_CONFIG) SPL u-boot.uim spl/u-boot-nand-spl.imx)
|
||||
|
||||
obj-$(CONFIG_MX5) += mx5/
|
||||
obj-$(CONFIG_MX6) += mx6/
|
||||
obj-$(CONFIG_MX7) += mx7/
|
||||
obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
#include <asm/armv7.h>
|
||||
#include <asm/pl310.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
||||
#ifndef CONFIG_SYS_DCACHE_OFF
|
||||
void enable_caches(void)
|
|
@ -6,7 +6,7 @@
|
|||
#include <common.h>
|
||||
#include <linux/errno.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/imx-common/boot_mode.h>
|
||||
#include <asm/mach-imx/boot_mode.h>
|
||||
#include <malloc.h>
|
||||
#include <command.h>
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#include <asm/system.h>
|
||||
#include <asm/arch/clock.h>
|
||||
#include <asm/arch/sys_proto.h>
|
||||
#include <asm/imx-common/hab.h>
|
||||
#include <asm/mach-imx/hab.h>
|
||||
|
||||
/* -------- start of HAB API updates ------------*/
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
#include <asm/arch/imx-regs.h>
|
||||
#include <linux/errno.h>
|
||||
#include <asm/gpio.h>
|
||||
#include <asm/imx-common/mxc_i2c.h>
|
||||
#include <asm/mach-imx/mxc_i2c.h>
|
||||
#include <watchdog.h>
|
||||
|
||||
int force_idle_bus(void *priv)
|
|
@ -8,7 +8,7 @@
|
|||
#include <asm/arch/imx-regs.h>
|
||||
#include <asm/arch/clock.h>
|
||||
#include <asm/arch/sys_proto.h>
|
||||
#include <asm/imx-common/boot_mode.h>
|
||||
#include <asm/mach-imx/boot_mode.h>
|
||||
#include <asm/arch/crm_regs.h>
|
||||
|
||||
void init_aips(void)
|
|
@ -11,8 +11,8 @@
|
|||
#include <common.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/arch/imx-regs.h>
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/imx-common/sys_proto.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
#include <asm/mach-imx/sys_proto.h>
|
||||
|
||||
static void *base = (void *)IOMUXC_BASE_ADDR;
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
#include <asm/arch/sys_proto.h>
|
||||
#include <linux/errno.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/imx-common/regs-common.h>
|
||||
#include <asm/mach-imx/regs-common.h>
|
||||
|
||||
/* 1 second delay should be plenty of time for block reset. */
|
||||
#define RESET_MAX_TIMEOUT 1000000
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include <linux/errno.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/imx-common/boot_mode.h>
|
||||
#include <asm/mach-imx/boot_mode.h>
|
||||
|
||||
#if !(defined(CONFIG_MX51) || defined(CONFIG_MX53))
|
||||
#error "CPU_TYPE not defined"
|
|
@ -205,9 +205,10 @@ config TARGET_MX6Q_ICORE_RQS
|
|||
select SUPPORT_SPL
|
||||
select SPL_LOAD_FIT
|
||||
|
||||
config TARGET_MX6QSABREAUTO
|
||||
bool "mx6qsabreauto"
|
||||
config TARGET_MX6SABREAUTO
|
||||
bool "mx6sabreauto"
|
||||
select BOARD_LATE_INIT
|
||||
select SUPPORT_SPL
|
||||
select DM
|
||||
select DM_THERMAL
|
||||
select BOARD_EARLY_INIT_F
|
||||
|
@ -416,7 +417,7 @@ source "board/engicam/icorem6/Kconfig"
|
|||
source "board/engicam/icorem6_rqs/Kconfig"
|
||||
source "board/engicam/isiotmx6ul/Kconfig"
|
||||
source "board/freescale/mx6qarm2/Kconfig"
|
||||
source "board/freescale/mx6qsabreauto/Kconfig"
|
||||
source "board/freescale/mx6sabreauto/Kconfig"
|
||||
source "board/freescale/mx6sabresd/Kconfig"
|
||||
source "board/freescale/mx6slevk/Kconfig"
|
||||
source "board/freescale/mx6sllevk/Kconfig"
|
|
@ -13,8 +13,8 @@
|
|||
#include <asm/arch/mx6-pins.h>
|
||||
#include <asm/arch/sys_proto.h>
|
||||
#include <asm/gpio.h>
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/imx-common/boot_mode.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
#include <asm/mach-imx/boot_mode.h>
|
||||
#include <asm/io.h>
|
||||
#include <common.h>
|
||||
#include <fsl_esdhc.h>
|
|
@ -12,7 +12,7 @@
|
|||
#include <asm/arch/mx6ul_pins.h>
|
||||
#include <asm/arch/sys_proto.h>
|
||||
#include <asm/gpio.h>
|
||||
#include <asm/imx-common/iomux-v3.h>
|
||||
#include <asm/mach-imx/iomux-v3.h>
|
||||
#include <asm/io.h>
|
||||
#include <common.h>
|
||||
#include <environment.h>
|
|
@ -13,9 +13,9 @@
|
|||
#include <asm/arch/imx-regs.h>
|
||||
#include <asm/arch/clock.h>
|
||||
#include <asm/arch/sys_proto.h>
|
||||
#include <asm/imx-common/boot_mode.h>
|
||||
#include <asm/imx-common/dma.h>
|
||||
#include <asm/imx-common/hab.h>
|
||||
#include <asm/mach-imx/boot_mode.h>
|
||||
#include <asm/mach-imx/dma.h>
|
||||
#include <asm/mach-imx/hab.h>
|
||||
#include <stdbool.h>
|
||||
#include <asm/arch/mxc_hdmi.h>
|
||||
#include <asm/arch/crm_regs.h>
|
||||
|
@ -427,11 +427,6 @@ int arch_cpu_init(void)
|
|||
|
||||
imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
|
||||
|
||||
#ifdef CONFIG_APBH_DMA
|
||||
/* Start APBH DMA */
|
||||
mxs_dma_init();
|
||||
#endif
|
||||
|
||||
init_src();
|
||||
|
||||
return 0;
|
||||
|
@ -548,7 +543,11 @@ void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
|
|||
const struct boot_mode soc_boot_modes[] = {
|
||||
{"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
|
||||
/* reserved value should start rom usb */
|
||||
#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
|
||||
{"usb", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
|
||||
#else
|
||||
{"usb", MAKE_CFGVAL(0x10, 0x00, 0x00, 0x00)},
|
||||
#endif
|
||||
{"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
|
||||
{"ecspi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
|
||||
{"ecspi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue