mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
085921368b
First supported chip is APQ8016 (that is compatible with MSM8916). Drivers in SoC code: - Reset controller (PSHOLD) - Clock controller (very simple clock configuration for MMC and UART) Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
14 lines
278 B
C
14 lines
278 B
C
/*
|
|
* Qualcomm APQ8916 sysmap
|
|
*
|
|
* (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#ifndef _MACH_SYSMAP_APQ8016_H
|
|
#define _MACH_SYSMAP_APQ8016_H
|
|
|
|
#define GICD_BASE 0x0b000000
|
|
#define GICC_BASE 0x0a20c000
|
|
|
|
#endif
|