mirror of
https://github.com/apache/nuttx.git
synced 2026-08-27 20:30:38 +00:00
Add the ARM architecture-level support and build system for the Realtek
Ameba WHC (Wi-Fi Host Controller) dual-core SoCs:
- RTL8721Dx (KM4 Cortex-M33 host + KM0 NP)
- RTL8720F (KM4TZ Cortex-M33 secure host + KM4NS NP)
New directories under arch/arm/src/:
- common/ameba/ -- IC-agnostic glue (os_wrapper, netdev, KV store,
flash MTD, WHC Wi-Fi, SDK bootstrap)
- rtl8721dx/ -- RTL8721Dx register-level drivers
- rtl8720f/ -- RTL8720F register-level drivers
New directories under arch/arm/include/:
- rtl8721dx/ -- RTL8721Dx IRQ and chip headers
- rtl8720f/ -- RTL8720F IRQ and chip headers
Also includes tools/nxstyle.c white-list entries for the Realtek SDK
CamelCase symbols and tools/ameba/Config.mk for the make flash target.
Signed-off-by: raul_chen <raul_chen@realsil.com.cn>
53 lines
2.3 KiB
C
53 lines
2.3 KiB
C
/****************************************************************************
|
|
* arch/arm/include/rtl8720f/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_ARM_INCLUDE_RTL8720F_CHIP_H
|
|
#define __ARCH_ARM_INCLUDE_RTL8720F_CHIP_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Prototypes
|
|
****************************************************************************/
|
|
|
|
#define NVIC_SYSH_PRIORITY_MIN 0xf0 /* Bits [7:5] set in minimum priority */
|
|
#define NVIC_SYSH_PRIORITY_DEFAULT 0x80 /* Midpoint is the default */
|
|
#define NVIC_SYSH_PRIORITY_MAX 0x00 /* Zero is maximum priority */
|
|
#define NVIC_SYSH_PRIORITY_STEP 0x10 /* Four bits of interrupt priority used */
|
|
|
|
/****************************************************************************
|
|
* Public Types
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Functions Prototypes
|
|
****************************************************************************/
|
|
|
|
#endif /* __ARCH_ARM_INCLUDE_RTL8720F_CHIP_H */
|