Searched +full:nvmem +full:- +full:rmem (Results 1 – 7 of 7) sorted by relevance
| /kernel/linux/linux-6.6/drivers/nvmem/ |
| D | rmem.c | 1 // SPDX-License-Identifier: GPL-2.0+ 8 #include <linux/nvmem-provider.h> 12 struct rmem { struct 14 struct nvmem_device *nvmem; member 23 struct rmem *priv = context; in rmem_read() argument 24 size_t available = priv->mem->size; in rmem_read() 32 * uses-cases for this driver, the performance hit isn't a concern. in rmem_read() 33 * Nor is likely to be, given the nature of the subsystem. Most nvmem in rmem_read() 39 addr = memremap(priv->mem->base, available, MEMREMAP_WB); in rmem_read() 41 dev_err(priv->dev, "Failed to remap memory region\n"); in rmem_read() [all …]
|
| D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0 3 # Makefile for nvmem drivers. 6 obj-$(CONFIG_NVMEM) += nvmem_core.o 7 nvmem_core-y := core.o 8 obj-y += layouts/ 11 obj-$(CONFIG_NVMEM_APPLE_EFUSES) += nvmem-apple-efuses.o 12 nvmem-apple-efuses-y := apple-efuses.o 13 obj-$(CONFIG_NVMEM_BCM_OCOTP) += nvmem-bcm-ocotp.o 14 nvmem-bcm-ocotp-y := bcm-ocotp.o 15 obj-$(CONFIG_NVMEM_BRCM_NVRAM) += nvmem_brcm_nvram.o [all …]
|
| D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 2 menuconfig NVMEM config 3 bool "NVMEM Support" 5 Support for NVMEM(Non Volatile Memory) devices like EEPROM, EFUSES... 7 This framework is designed to provide a generic interface to NVMEM 12 if NVMEM 15 bool "/sys/bus/nvmem/devices/*/nvmem (sysfs interface)" 19 Say Y here to add a sysfs interface for NVMEM. 22 read/write directly into nvmem. 26 source "drivers/nvmem/layouts/Kconfig" [all …]
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/nvmem/ |
| D | rmem.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/nvmem/rmem.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Reserved Memory Based nvmem Device 10 - Nicolas Saenz Julienne <nsaenzjulienne@suse.de> 13 - $ref: nvmem.yaml# 18 - enum: 19 - raspberrypi,bootloader-config 20 - raspberrypi,bootloader-public-key [all …]
|
| /kernel/linux/linux-6.6/arch/arm/boot/dts/broadcom/ |
| D | bcm2711-rpi.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 2 #include "bcm2835-rpi.dtsi" 4 #include <dt-bindings/reset/raspberrypi,firmware-reset.h> 23 compatible = "raspberrypi,firmware-clocks"; 24 #clock-cells = <1>; 28 compatible = "raspberrypi,firmware-gpio"; 29 gpio-controller; 30 #gpio-cells = <2>; 35 compatible = "raspberrypi,firmware-reset"; 36 #reset-cells = <1>; [all …]
|
| /kernel/linux/linux-6.6/drivers/of/ |
| D | platform.c | 1 // SPDX-License-Identifier: GPL-2.0+ 16 #include <linux/dma-mapping.h> 27 { .compatible = "simple-bus", }, 28 { .compatible = "simple-mfd", }, 31 { .compatible = "arm,amba-bus", }, 37 * of_find_device_by_node - Find the platform_device associated with a node 56 BUG_ON(ofdev->dev.of_node == NULL); in of_device_add() 60 ofdev->name = dev_name(&ofdev->dev); in of_device_add() 61 ofdev->id = PLATFORM_DEVID_NONE; in of_device_add() 68 set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node)); in of_device_add() [all …]
|
| /kernel/linux/patches/linux-5.10/imx8mm_patch/patches/drivers/ |
| D | 0030_linux_drivers_pci_misc_nvmem_of_mtd_mmc.patch | 7 Change-Id: Iec160bd007994d82f416debdccfbc0d9bdb40470 9 diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig 11 --- a/drivers/misc/Kconfig 13 @@ -314,6 +314,26 @@ config ISL29020 40 diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile 42 --- a/drivers/misc/Makefile 44 @@ -19,6 +19,8 @@ obj-$(CONFIG_TIFM_7XX1) += tifm_7xx1.o 45 obj-$(CONFIG_PHANTOM) += phantom.o 46 obj-$(CONFIG_QCOM_COINCELL) += qcom-coincell.o 47 obj-$(CONFIG_QCOM_FASTRPC) += fastrpc.o [all …]
|