mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Qualcomm APQ8916 sysmap
|
|
*
|
|
* (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
|
|
*/
|
|
#ifndef _MACH_SYSMAP_APQ8016_H
|
|
#define _MACH_SYSMAP_APQ8016_H
|
|
|
|
#define GICD_BASE (0x0b000000)
|
|
#define GICC_BASE (0x0a20c000)
|
|
|
|
/* Clocks: (from CLK_CTL_BASE) */
|
|
#define GPLL0_STATUS (0x2101C)
|
|
#define APCS_GPLL_ENA_VOTE (0x45000)
|
|
|
|
#define SDCC_BCR(n) ((n * 0x1000) + 0x41000)
|
|
#define SDCC_CMD_RCGR(n) ((n * 0x1000) + 0x41004)
|
|
#define SDCC_CFG_RCGR(n) ((n * 0x1000) + 0x41008)
|
|
#define SDCC_M(n) ((n * 0x1000) + 0x4100C)
|
|
#define SDCC_N(n) ((n * 0x1000) + 0x41010)
|
|
#define SDCC_D(n) ((n * 0x1000) + 0x41014)
|
|
#define SDCC_APPS_CBCR(n) ((n * 0x1000) + 0x41018)
|
|
#define SDCC_AHB_CBCR(n) ((n * 0x1000) + 0x4101C)
|
|
|
|
/* BLSP1 AHB clock (root clock for BLSP) */
|
|
#define BLSP1_AHB_CBCR 0x1008
|
|
|
|
/* Uart clock control registers */
|
|
#define BLSP1_UART2_BCR (0x3028)
|
|
#define BLSP1_UART2_APPS_CBCR (0x302C)
|
|
#define BLSP1_UART2_APPS_CMD_RCGR (0x3034)
|
|
#define BLSP1_UART2_APPS_CFG_RCGR (0x3038)
|
|
#define BLSP1_UART2_APPS_M (0x303C)
|
|
#define BLSP1_UART2_APPS_N (0x3040)
|
|
#define BLSP1_UART2_APPS_D (0x3044)
|
|
|
|
#endif
|