Searched +full:wpcm450 +full:- +full:shm (Results 1 – 4 of 4) sorted by relevance
/linux/Documentation/devicetree/bindings/spi/ |
H A D | nuvoton,wpcm450-fiu.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 4 $id: http://devicetree.org/schemas/spi/nuvoton,wpcm450-fiu.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Nuvoton WPCM450 Flash Interface Unit (FIU) 10 - Jonathan Neuschäfer <j.neuschaefer@gmx.net> 13 - $ref: /schemas/spi/spi-controller.yaml# 17 const: nuvoton,wpcm450-fiu 21 - description: FIU registers 22 - description: Memory-mapped flash contents [all …]
|
/linux/arch/arm/boot/dts/nuvoton/ |
H A D | nuvoton-wpcm450.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 4 #include <dt-bindings/interrupt-controller/irq.h> 7 compatible = "nuvoton,wpcm450"; 8 #address-cells = <1>; 9 #size-cells = <1>; 23 #address-cells = <1>; 24 #size-cells = <0>; 27 compatible = "arm,arm926ej-s"; 33 clk24m: clock-24mhz { 35 compatible = "fixed-clock"; [all …]
|
/linux/Documentation/devicetree/bindings/mfd/ |
H A D | syscon.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 12 represent as any specific type of device. The typical use-case is 13 for some other node's driver, or platform-specific code, to acquire 20 - Lee Jones <lee@kernel.org> 30 - al,alpine-sysfabric-servic 31 - allwinner,sun8i-a83t-system-controller 32 - allwinner,sun8i-h3-system-controller 33 - allwinner,sun8i-v3s-system-controller [all …]
|
/linux/drivers/spi/ |
H A D | spi-wpcm-fiu.c | 1 // SPDX-License-Identifier: GPL-2.0 10 #include <linux/spi/spi-mem.h> 53 /* The memory-mapped view of flash is 16 MiB long */ 68 writeb(opcode, fiu->regs + FIU_UMA_CODE); in wpcm_fiu_set_opcode() 73 writeb((addr >> 0) & 0xff, fiu->regs + FIU_UMA_AB0); in wpcm_fiu_set_addr() 74 writeb((addr >> 8) & 0xff, fiu->regs + FIU_UMA_AB1); in wpcm_fiu_set_addr() 75 writeb((addr >> 16) & 0xff, fiu->regs + FIU_UMA_AB2); in wpcm_fiu_set_addr() 83 writeb(data[i], fiu->regs + FIU_UMA_DB0 + i); in wpcm_fiu_set_data() 91 data[i] = readb(fiu->regs + FIU_UMA_DB0 + i); in wpcm_fiu_get_data() 95 * Perform a UMA (User Mode Access) operation, i.e. a software-controlled SPI transfer. [all …]
|