mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 10:14:23 +08:00
3d0b16a66c
Now that we have the nvmem framework, we can consolidate the common driver code. Move the driver to the framework, and hopefully, it will fix the sysfs file creation race. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> [srinivas.kandagatla: Moved to regmap based EEPROM framework] Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Tested-by: Philipp Zabel <p.zabel@pengutronix.de> Tested-by: Rajendra Nayak <rnayak@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22 lines
482 B
Plaintext
22 lines
482 B
Plaintext
Allwinner sunxi-sid
|
|
|
|
Required properties:
|
|
- compatible: "allwinner,sun4i-a10-sid" or "allwinner,sun7i-a20-sid"
|
|
- reg: Should contain registers location and length
|
|
|
|
= Data cells =
|
|
Are child nodes of qfprom, bindings of which as described in
|
|
bindings/nvmem/nvmem.txt
|
|
|
|
Example for sun4i:
|
|
sid@01c23800 {
|
|
compatible = "allwinner,sun4i-a10-sid";
|
|
reg = <0x01c23800 0x10>
|
|
};
|
|
|
|
Example for sun7i:
|
|
sid@01c23800 {
|
|
compatible = "allwinner,sun7i-a20-sid";
|
|
reg = <0x01c23800 0x200>
|
|
};
|