espi: add espi peripheral channel HOST_CMD driver for rts5912 Unlike other chips using IO port 0x800-0x8ff, we utilize shared memory to transfer host command parameters. The AP firmware must have corresponding settings for this configuration. Signed-off-by: jhan bo chao <jhan_bo_chao@realtek.com>
19 lines
352 B
C
19 lines
352 B
C
/*
|
|
* Copyright (c) 2025 Realtek, SIBG-SD7
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_SOC_REALTEK_RTS5912_REG_EMI_H
|
|
#define ZEPHYR_SOC_REALTEK_RTS5912_REG_EMI_H
|
|
|
|
struct emi_reg {
|
|
uint32_t CFG;
|
|
uint32_t INTCTRL;
|
|
uint32_t IRQNUM;
|
|
uint32_t SAR;
|
|
uint32_t INTSTS;
|
|
uint32_t STS;
|
|
};
|
|
|
|
#endif /* ZEPHYR_SOC_REALTEK_RTS5912_REG_EMI_H */
|