How to make GPIO pin default as Active High in i.MX6UL dts source

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

How to make GPIO pin default as Active High in i.MX6UL dts source

ソリューションへジャンプ
3,513件の閲覧回数
Poornesh7
Contributor II

Greetings !

We have designed custom carrier board using i.MX6UL SoC . In the custom board,
GPIO‘s are used for relay purpose . Here we need the GPIO pins to be in  Active High as default. Please suggest us the procedure to enable the GPIO pins in Active High state as default  in  dts source .

As below we have enabled the GPIO pins

--------------------------------------------------------------------------------------------------------------------------------------

pinctrl_gpio4: gpio4 {
fsl,pins = <
          MX6UL_PAD_CSI_MCLK__GPIO4_IO17       0x70a1
          MX6UL_PAD_CSI_PIXCLK__GPIO4_IO18    0x70a1
          MX6UL_PAD_CSI_VSYNC__GPIO4_IO19    0x70a1
          MX6UL_PAD_CSI_HSYNC__GPIO4_IO20    0x70a1
          MX6UL_PAD_CSI_DATA00__GPIO4_IO21   0x70a1
          MX6UL_PAD_CSI_DATA01__GPIO4_IO22   0x70a1
          MX6UL_PAD_CSI_DATA02__GPIO4_IO23   0x70a1
          MX6UL_PAD_CSI_DATA03__GPIO4_IO24   0x70a1
          MX6UL_PAD_CSI_DATA04__GPIO4_IO25   0x70a1
          MX6UL_PAD_CSI_DATA05__GPIO4_IO26   0x70a1
          MX6UL_PAD_CSI_DATA06__GPIO4_IO27   0x70a1
          MX6UL_PAD_CSI_DATA07__GPIO4_IO28   0x70a1
          MX6UL_PAD_NAND_WP_B__GPIO4_IO11  0x70a1
  >;
};

------------------------------------------------------------------------------------------------------------------------------------

 

Thanks in advance

0 件の賞賛
1 解決策
3,508件の閲覧回数
kef2
Senior Contributor IV

You already made the pins high with pull up enable (PUE=1 PKE=1 PUS > 0). 0xf0a1 instead of 0x70a1 would make pull up stronger (22k vs 47k).

There's a way to force pin high/low in output mode, but then you won't be able to use such pins neither with ligpiod or sysfs gpio:

&gpio1 {
	some_pin_as_output {
		gpio-hog;
		gpios = <15 0>; /* 15th bit of gpio */
		output-high; /* or output-low */
	};
};

With this gpioinfo will report pin as used and so not available.

元の投稿で解決策を見る

4 返答(返信)
3,486件の閲覧回数
Poornesh7
Contributor II

I'd also like to know the procedure to set the all the GPIOs available on the IMX.6UL to a default low state. 

The Application running on the processor has variable loads connected to the GPIOs via relays, The Power supplied to those loads aren't sufficient if all the loads get turned on while we are booting up the processor. Hence, we need the GPIOs to be in LOW state while we boot the device. Please suggest a way to do the same.

Information on how to calculate these values '0xf0a1 / 0x70a1' would be highly appreciated.

Thanks in advance,
Poornesh

0 件の賞賛
3,483件の閲覧回数
kef2
Senior Contributor IV

See your iMX7ULL Reference Manual

https://www.nxp.com/webapp/Download?colCode=IMX6ULLRM

Look for specific PAD Control Register. Most of these pad control register have the same fields, but there are as well some differences. For example 

kef2_0-1655798134286.png

 

 

3,509件の閲覧回数
kef2
Senior Contributor IV

You already made the pins high with pull up enable (PUE=1 PKE=1 PUS > 0). 0xf0a1 instead of 0x70a1 would make pull up stronger (22k vs 47k).

There's a way to force pin high/low in output mode, but then you won't be able to use such pins neither with ligpiod or sysfs gpio:

&gpio1 {
	some_pin_as_output {
		gpio-hog;
		gpios = <15 0>; /* 15th bit of gpio */
		output-high; /* or output-low */
	};
};

With this gpioinfo will report pin as used and so not available.

3,494件の閲覧回数
Poornesh7
Contributor II

Thanks for your clear information !

0 件の賞賛