MDIO and MDC as GPIO in Jetson orion AGX dev Kit

PM.05 :
GPIO_M_OUTPUT_CONTROL_05_0 => 0x022120ac
GPIO_M_ENABLE_CONFIG_05_0 => 0x022120a0
GPIO_M_OUTPUT_VALUE_05_0 => 0x022120b0

PM.06 :
GPIO_M_OUTPUT_CONTROL_06_0 => 0x022120cc
GPIO_M_ENABLE_CONFIG_06_0 => 0x022120c0
GPIO_M_OUTPUT_VALUE_06_0 => 0x022120d0

Please refer to the following steps to control it. (e.g. PM.05)

// configure OUTPUT_CONTROL as DRIVEN
$ sudo busybox devmem 0x022120ac w 0x0

// configure ENABLE_CONFIG as ENABLE/OUT
$ sudo busybox devmem 0x022120a0 w 0x3

// control PM.05 to High/Low
$ sudo busybox devmem 0x022120b0 w 0x1
$ sudo busybox devmem 0x022120b0 w 0x0