Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: aspeed: Add silicon id node to SCU

Different ASPEED families have various unique hardware silicon
identifiers within the SoC.

Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Link: https://lore.kernel.org/r/20200921091644.133107-2-joel@jms.id.au
Signed-off-by: Joel Stanley <joel@jms.id.au>

+26
+26
Documentation/devicetree/bindings/mfd/aspeed-scu.txt
··· 20 20 #clock-cells = <1>; 21 21 #reset-cells = <1>; 22 22 }; 23 + 24 + Silicon ID 25 + ----------------- 26 + 27 + Families have unique hardware silicon identifiers within the SoC. 28 + 29 + Required properties: 30 + 31 + - compatible: "aspeed,silicon-id" or: 32 + "aspeed,ast2400-silicon-id" or 33 + "aspeed,ast2500-silicon-id" or 34 + "aspeed,ast2600-silicon-id" 35 + 36 + - reg: offset and length of the silicon id information 37 + optionally, a second offset and length describes the unique chip id 38 + 39 + The reg should be the unique silicon id register, and 40 + not backwards compatible one in eg. the 2600. 41 + 42 + Example: 43 + 44 + 45 + silicon-id@7c { 46 + compatible = "aspeed,ast2500-silicon-id", "aspeed,silicon-id"; 47 + reg = <0x7c 0x4 0x150 0x8>; 48 + };