mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 05:41:55 +00:00
22f090a4b1
This adds device tree bindings for the Cortina systems Gemini flash controller, a simple physmap which however need a few syscon bits to be poked to operate properly. Cc: Janos Laube <janos.dev@gmail.com> Cc: Paulius Zaleckas <paulius.zaleckas@gmail.com> Cc: Hans Ulli Kroll <ulli.kroll@googlemail.com> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: devicetree@vger.kernel.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Marek Vasut <marek.vasut@gmail.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
25 lines
778 B
Plaintext
25 lines
778 B
Plaintext
Flash device on Cortina Systems Gemini SoC
|
|
|
|
This flash is regular CFI compatible (Intel or AMD extended) flash chips with
|
|
some special bits that can be controlled by the machine's system controller.
|
|
|
|
Required properties:
|
|
- compatible : must be "cortina,gemini-flash", "cfi-flash";
|
|
- reg : memory address for the flash chip
|
|
- syscon : must be a phandle to the system controller
|
|
- bank-width : width in bytes of flash interface, should be <2>
|
|
|
|
For the rest of the properties, see mtd-physmap.txt.
|
|
|
|
The device tree may optionally contain sub-nodes describing partitions of the
|
|
address space. See partition.txt for more detail.
|
|
|
|
Example:
|
|
|
|
flash@30000000 {
|
|
compatible = "cortina,gemini-flash", "cfi-flash";
|
|
reg = <0x30000000 0x01000000>;
|
|
syscon = <&syscon>;
|
|
bank-width = <2>;
|
|
};
|