mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00

* target: add phytium support * kernel/video: add phytium platform ARM GPU support * config: add EFI support to phytium armv8 * target: phytium: remove rtl8821cs driver * target: phytium: refresh dts
22 lines
573 B
Plaintext
22 lines
573 B
Plaintext
Phytium HwSpinlock Driver
|
|
========================
|
|
|
|
Required properties:
|
|
- compatible: Should be "phytium,hwspinlock"
|
|
- reg: Contains the hwspinlock module register address space
|
|
(base address and length)
|
|
- #hwlock-cells: Should be 1.
|
|
- nr-locks: The number of locks in the device.
|
|
|
|
Please look at the generic hwlock binding for usage information for consumers,
|
|
"Documentation/devicetree/bindings/hwlock/hwlock.txt"
|
|
|
|
Example:
|
|
|
|
hwspinlock: spinlock@40000000 {
|
|
compatible = "phytium,hwspinlock";
|
|
reg = <0x40000000 0x1000>;
|
|
#hwlock-cells = <1>;
|
|
nr-locks = <32>;
|
|
};
|