OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:reset_pin
(Results
1 - 4
of
4
) sorted by null
/external/u-boot/board/xilinx/microblaze-generic/
microblaze-generic.c
22
static int
reset_pin
= -1;
variable
65
if (
reset_pin
!= -1)
66
gpio_direction_output(
reset_pin
, 1);
83
reset_pin
= gpio_alloc(CONFIG_SYS_GPIO_0_ADDR, "reset", 1);
84
if (
reset_pin
!= -1)
85
gpio_request(
reset_pin
, "
reset_pin
");
/external/u-boot/drivers/video/
ssd2828.h
42
int
reset_pin
;
member in struct:ssd2828_config
ssd2828.c
186
gpio_set_value(cfg->
reset_pin
, 0);
188
gpio_set_value(cfg->
reset_pin
, 1);
209
if (gpio_request(cfg->
reset_pin
, "ssd2828_reset")) {
220
gpio_free(cfg->
reset_pin
);
224
gpio_direction_output(cfg->
reset_pin
, 0);
239
gpio_free(cfg->
reset_pin
);
/external/u-boot/drivers/video/sunxi/
sunxi_display.c
548
int pin,
reset_pin
;
local
566
reset_pin
= sunxi_name_to_gpio(CONFIG_VIDEO_LCD_RESET);
567
if (
reset_pin
>= 0) {
568
gpio_request(
reset_pin
, "lcd_reset");
569
gpio_direction_output(
reset_pin
, 0); /* Assert reset */
580
if (
reset_pin
>= 0)
581
gpio_direction_output(
reset_pin
, 1); /* De-assert reset */
889
.
reset_pin
= name_to_gpio(CONFIG_VIDEO_LCD_SSD2828_RESET),
906
if (cfg.
reset_pin
== -1) {
[
all
...]
Completed in 344 milliseconds