mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
hw/ssi: Allwinner A10 SPI emulation
This patch implements Allwinner A10 SPI controller emulation. Only master-mode functionality is implemented. Since U-Boot and Linux SPI drivers for Allwinner A10 perform only byte-wide CPU access (no DMA) to the transmit and receive registers of the peripheral, the emulated controller does not implement DMA control, and supports only byte-wide access to transmit and receive registers (half-word and word accesses will be treated as byte accesses). Signed-off-by: Strahinja Jankovic <strahinja.p.jankovic@gmail.com> Message-id: 20241001221349.8319-2-strahinja.p.jankovic@gmail.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
committed by
Peter Maydell
parent
88446cfe06
commit
8d3dfb6205
@@ -28,3 +28,7 @@ config BCM2835_SPI
|
||||
config PNV_SPI
|
||||
bool
|
||||
select SSI
|
||||
|
||||
config ALLWINNER_A10_SPI
|
||||
bool
|
||||
select SSI
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,4 @@
|
||||
system_ss.add(when: 'CONFIG_ALLWINNER_A10_SPI', if_true: files('allwinner-a10-spi.c'))
|
||||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_smc.c'))
|
||||
system_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-spi.c'))
|
||||
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_fiu.c', 'npcm_pspi.c'))
|
||||
|
||||
@@ -53,3 +53,13 @@ pnv_spi_rx_read_N2frame(void) ""
|
||||
pnv_spi_shift_rx(uint8_t byte, uint32_t index) "byte = 0x%2.2x into RDR from payload index %d"
|
||||
pnv_spi_sequencer_stop_requested(const char* reason) "due to %s"
|
||||
pnv_spi_RDR_match(const char* result) "%s"
|
||||
|
||||
# allwinner_a10_spi.c
|
||||
allwinner_a10_spi_update_irq(uint32_t level) "IRQ level is %d"
|
||||
allwinner_a10_spi_flush_txfifo_begin(uint32_t tx, uint32_t rx) "Begin: TX Fifo Size = %d, RX Fifo Size = %d"
|
||||
allwinner_a10_spi_flush_txfifo_end(uint32_t tx, uint32_t rx) "End: TX Fifo Size = %d, RX Fifo Size = %d"
|
||||
allwinner_a10_spi_burst_length(uint32_t len) "Burst length = %d"
|
||||
allwinner_a10_spi_tx(uint8_t byte) "write 0x%02x"
|
||||
allwinner_a10_spi_rx(uint8_t byte) "read 0x%02x"
|
||||
allwinner_a10_spi_read(const char* regname, uint32_t value) "reg[%s] => 0x%08x"
|
||||
allwinner_a10_spi_write(const char* regname, uint32_t value) "reg[%s] <= 0x%08x"
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* Allwinner SPI Bus Serial Interface registers definition
|
||||
*
|
||||
* Copyright (C) 2024 Strahinja Jankovic. <strahinja.p.jankovic@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef ALLWINNER_A10_SPI_H
|
||||
#define ALLWINNER_A10_SPI_H
|
||||
|
||||
#include "hw/ssi/ssi.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "qemu/fifo8.h"
|
||||
#include "qom/object.h"
|
||||
|
||||
/** Size of register I/O address space used by SPI device */
|
||||
#define AW_A10_SPI_IOSIZE (0x1000)
|
||||
|
||||
/** Total number of known registers */
|
||||
#define AW_A10_SPI_REGS_NUM (AW_A10_SPI_IOSIZE / sizeof(uint32_t))
|
||||
#define AW_A10_SPI_FIFO_SIZE (64)
|
||||
#define AW_A10_SPI_CS_LINES_NR (4)
|
||||
|
||||
#define TYPE_AW_A10_SPI "allwinner.spi"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(AWA10SPIState, AW_A10_SPI)
|
||||
|
||||
struct AWA10SPIState {
|
||||
/*< private >*/
|
||||
SysBusDevice parent_obj;
|
||||
|
||||
/*< public >*/
|
||||
MemoryRegion iomem;
|
||||
SSIBus *bus;
|
||||
qemu_irq irq;
|
||||
qemu_irq cs_lines[AW_A10_SPI_CS_LINES_NR];
|
||||
|
||||
uint32_t regs[AW_A10_SPI_REGS_NUM];
|
||||
|
||||
Fifo8 rx_fifo;
|
||||
Fifo8 tx_fifo;
|
||||
};
|
||||
|
||||
#endif /* ALLWINNER_A10_SPI_H */
|
||||
Reference in New Issue
Block a user