Merge tag 'rockchip-for-2019.07' of git://git.denx.de/u-boot-rockchip
Improvements and new features: - improved SPI driver for better read throughput - refactors initialisation of debug UART init - restructures header file paths - adds pinctrl improvements Adds Kever as a co-custodian.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#ifndef _ASM_ARCH_DDR_RK3188_H
|
||||
#define _ASM_ARCH_DDR_RK3188_H
|
||||
|
||||
#include <asm/arch/ddr_rk3288.h>
|
||||
#include <asm/arch-rockchip/ddr_rk3288.h>
|
||||
|
||||
/*
|
||||
* RK3188 Memory scheduler register map.
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
#define RK_SETBITS(set) RK_CLRSETBITS(0, set)
|
||||
#define RK_CLRBITS(clr) RK_CLRSETBITS(clr, 0)
|
||||
|
||||
#define TIMER7_BASE 0xff810020
|
||||
|
||||
#define rk_clrsetreg(addr, clr, set) \
|
||||
writel(((clr) | (set)) << 16 | (set), addr)
|
||||
#define rk_clrreg(addr, clr) writel((clr) << 16, addr)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#if !defined(CONFIG_ARCH_UNIPHIER) && !defined(CONFIG_ARCH_STI) && \
|
||||
!defined(CONFIG_ARCH_K3) && !defined(CONFIG_ARCH_BCM6858) && \
|
||||
!defined(CONFIG_ARCH_BCM63158)
|
||||
!defined(CONFIG_ARCH_BCM63158) && !defined(CONFIG_ARCH_ROCKCHIP)
|
||||
#include <asm/arch/gpio.h>
|
||||
#endif
|
||||
#include <asm-generic/gpio.h>
|
||||
|
||||
Reference in New Issue
Block a user