mirror of
https://github.com/apache/nuttx.git
synced 2026-08-03 21:29:02 +00:00
This PR adds support for the Allwinner A527 Arm64 SoC. This will be used by the upcoming port of NuttX for PINE64 Yuzuki Avaota-A1 SBC. Most of the code was derived from NuttX for QEMU Arm64 Kernel Build qemu-armv8a:knsh. The modified code is explained here: https://lupyuen.github.io/articles/avaota#appendix-port-nuttx-to-avaota-a1 Modified Files in arch/arm64: Kconfig: Added ARCH_CHIP_SUNXI for Allwinner 64-bit SoCs. Added ARCH_CHIP_SUNXI_A527 for A527 SoC. New Files in arch/arm64: include/a527/chip.h: A527 Definitions include/a527/irq.h: External Interrupts src/a527/chip.h: Memory Map src/a527/a527_boot.c, a527_boot.h: Startup Code src/a527/a527_initialize.c: Power Management src/a527/a527_lowputc.S: UART Output src/a527/a527_serial.c: Serial Driver src/a527/a527_textheap.c: Text Heap src/a527/a527_timer.c: A527 Timer src/a527/Kconfig: A527 Config src/a527/Make.defs, CMakeLists.txt: Makefiles Signed-off-by: Lup Yuen Lee <luppy@appkaki.com>
77 lines
2.6 KiB
C
77 lines
2.6 KiB
C
/****************************************************************************
|
|
* arch/arm64/include/a527/chip.h
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __ARCH_ARM64_INCLUDE_A527_CHIP_H
|
|
#define __ARCH_ARM64_INCLUDE_A527_CHIP_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/* Number of bytes in x kibibytes/mebibytes/gibibytes */
|
|
|
|
#define KB(x) ((x) << 10)
|
|
#define MB(x) (KB(x) << 10)
|
|
#define GB(x) (MB(UINT64_C(x)) << 10)
|
|
|
|
/* Generic Interrupt Controller v3: Distributor and Redistributor */
|
|
|
|
#define CONFIG_GICD_BASE 0x3400000
|
|
#define CONFIG_GICR_BASE 0x3460000
|
|
#define CONFIG_GICR_OFFSET 0x20000
|
|
|
|
/* Memory Map: RAM and I/O Memory */
|
|
|
|
#define CONFIG_RAMBANK1_ADDR 0x40000000
|
|
#define CONFIG_RAMBANK1_SIZE MB(128)
|
|
|
|
#define CONFIG_DEVICEIO_BASEADDR 0x00000000
|
|
#define CONFIG_DEVICEIO_SIZE MB(1024)
|
|
|
|
/* Bootloader loads NuttX at this address */
|
|
|
|
#define CONFIG_LOAD_BASE 0x40800000
|
|
|
|
/* GIC Cluster Mapping */
|
|
|
|
#define MPID_TO_CLUSTER_ID(mpid) ((mpid) & ~0xff)
|
|
|
|
/****************************************************************************
|
|
* Assembly Macros
|
|
****************************************************************************/
|
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
.macro get_cpu_id xreg0
|
|
mrs \xreg0, mpidr_el1
|
|
ubfx \xreg0, \xreg0, #0, #8
|
|
.endm
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __ARCH_ARM64_INCLUDE_A527_CHIP_H */
|