I'm learning about devicetrees for the RPI 4B and the CM4 (and admittedly, also about devicetrees in general), and I see some signals of the VideoCore are defined as either "external" or "absent" when not on the BCM native GPIO.
Example from the CM4:
Code: Select all
pin_define@LAN_RUN {
type = "absent";
};
pin_define@BT_ON {
type = "external";
number = <0>;
};
(Kind of off-topic: Is it documented somewhere what these signals (LAN_RUN , FLASH_1_ENABLE , USB_LIMIT_1A2 and so on) exactly are / how they are used? Some are obvious but some others are not, it'd be nice if there existed a compiled list with explanations.)
Thanks for any help