input; gpios = <6 GPIO_ACTIVE_LOW>; }; boot_rescue { gpio-hog; input; gpios = <7 GPIO_ACTIVE_LOW>; }; }; For the above Example you can than access the gpio in your boardcode with: desc = gpio_hog_lookup_name("boot_rescue.gpio-hog"); if (desc) { if (dm_gpio_get_value...