| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Common address map definitions |
|---|
| 3 | | - * |
|---|
| 4 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 5 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 6 | | - * published by the Free Software Foundation. |
|---|
| 7 | 4 | */ |
|---|
| 8 | 5 | |
|---|
| 9 | 6 | #ifndef __ASM_MACH_ADDR_MAP_H |
|---|
| .. | .. |
|---|
| 23 | 20 | #define AXI_VIRT_BASE IOMEM(0xfe200000) |
|---|
| 24 | 21 | #define AXI_PHYS_SIZE 0x00200000 |
|---|
| 25 | 22 | |
|---|
| 23 | +#define PGU_PHYS_BASE 0xe0000000 |
|---|
| 24 | +#define PGU_VIRT_BASE IOMEM(0xfe400000) |
|---|
| 25 | +#define PGU_PHYS_SIZE 0x00100000 |
|---|
| 26 | + |
|---|
| 26 | 27 | /* Static Memory Controller - Chip Select 0 and 1 */ |
|---|
| 27 | 28 | #define SMC_CS0_PHYS_BASE 0x80000000 |
|---|
| 28 | 29 | #define SMC_CS0_PHYS_SIZE 0x10000000 |
|---|
| .. | .. |
|---|
| 41 | 42 | #define CIU_VIRT_BASE (AXI_VIRT_BASE + 0x82c00) |
|---|
| 42 | 43 | #define CIU_REG(x) (CIU_VIRT_BASE + (x)) |
|---|
| 43 | 44 | |
|---|
| 45 | +#define SCU_VIRT_BASE (PGU_VIRT_BASE) |
|---|
| 46 | +#define SCU_REG(x) (SCU_VIRT_BASE + (x)) |
|---|
| 47 | + |
|---|
| 44 | 48 | #endif /* __ASM_MACH_ADDR_MAP_H */ |
|---|