mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
This change will fix the following compiler warnings for AK and DK targets. 1.Wimplicit-function-declaration 2.Wdiscarded-qualifiers 3.Wstrict-prototypes 4.Wmaybe-uninitialized 5.Wunused-variable 6.Wint-conversion Change-Id: I364904283172ccb19602ae1b6deceb8c61ea7638 Signed-off-by: sameeruddin shaik <samesh@codeaurora.org>
29 lines
954 B
C
29 lines
954 B
C
/*
|
|
* Copyright (c) 2015-2017 The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _PLATFORM_IPQ40XX_IOMAP_H_
|
|
#define _PLATFORM_IPQ40XX_IOMAP_H_
|
|
|
|
#define CLK_CTL_BASE 0x01800000
|
|
#define GCNT_BASE 0x004a1000
|
|
#define TIMER_BASE 0x0B021000
|
|
#define UART2_DM_BASE 0x078b0000
|
|
#define UART1_DM_BASE 0x078af000
|
|
#define I2C0_BASE 0x078B7000
|
|
|
|
#define GCNT_PSHOLD 0x004AB000
|
|
|
|
#define CPU1_APCS_SAW2_VCTL 0x02099014
|
|
#define CPU1_APCS_CPU_PWR_CTL 0x02098004
|
|
|
|
#endif /* _PLATFORM_IPQ40XX_IOMAP_H_ */
|