rk3399 android7.1 在u-boot中对GPIO口进行操作

  • Post author:
  • Post category:其他


主控:rk3399

系统:android7.1

内核版本:4.4.126

在u-boot中对GPIO口进行操作。

代码补丁如下:

diff –git a/common/board_f.c b/common/board_f.c

old mode 100644

new mode 100755

index c1825d8..53fb652

— a/common/board_f.c

+++ b/common/board_f.c

@@ -836,6 +836,24 @@ static int initf_dm(void)

return 0;

}

+static int set_gpio(void)

+{

+//gpio2_B1

+ gpio_direction_output((GPIO_BANK2 | GPIO_B1), 1);

+

+//gpio2_A5

+ gpio_direction_output((GPIO_BANK2 | GPIO_A5), 1);

+

+//gpio2_A4

+ gpio_direction_output((GPIO_BANK2 | GPIO_A4), 1);

+

+//gpio2_B4

+ gpio_direction_output((GPIO_BANK2 | GPIO_B4), 1);

+

+//gpio2_B2

+ gpio_direction_output((GPIO_BANK2 | GPIO_B2), 1);

+}

+

static init_fnc_t init_sequence_f[] = {

#ifdef CONFIG_SANDBOX

setup_ram_buf,

@@ -1030,6 +1048,7 @@ static init_fnc_t init_sequence_f[] = {

#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)

jump_to_copy,

#endif

+ set_gpio, //@add for  set gpio

NULL,

};



版权声明:本文为u012170304原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。