summaryrefslogtreecommitdiff
path: root/drivers/gpio/gpio-uclass.c
AgeCommit message (Expand)AuthorFilesLines
2023-07-14gpio: Avoid using an invalid ofnodeSimon Glass1-1/+1
2023-04-25gpio-uclass: fix off-by-one in gpio_request_list_by_name_nodev()Rasmus Villemoes1-1/+1
2023-03-30gpio: allow passing NULL to gpio_request_by_line_name() to search all gpio co...Rasmus Villemoes1-0/+7
2023-01-12gpio: Get rid of gpio_hog_probe_all()Marek Vasut1-23/+8
2022-10-29dm: treewide: Do not use the return value of simple uclass iteratorMichal Suchanek1-8/+6
2022-10-29gpio-uclass: fix gpio lookup by labelRasmus Villemoes1-3/+1
2022-09-15gpio: Fix pin's status display for pin with GPIOF_UNUSED functionPatrice Chotard1-1/+1
2022-09-15gpio: Allow to print pin's label even for pin with GPIOF_FUNC functionPatrice Chotard1-5/+11
2022-04-09gpio: Enable hogging support in SPLEddie James1-4/+4
2022-04-08gpio: Add gpio_request_by_line_name()Andrew Jeffery1-0/+26
2022-01-19doc: replace @return by Return:Heinrich Schuchardt1-2/+2
2021-10-05gpio: Factor out DT flag translationSamuel Holland1-21/+29
2021-10-05gpio: Verify validity of pin offsets from device treesSamuel Holland1-0/+4
2021-10-05gpio: Verify validity of pin offsets when looking up namesSamuel Holland1-1/+2
2021-09-25dm: gpio: Add of-platdata supportSimon Glass1-2/+24
2021-09-25treewide: Use OF_REAL instead of !OF_PLATDATASimon Glass1-1/+1
2021-08-02global: Convert simple_strtoul() with decimal to dectoul()Simon Glass1-1/+1
2021-05-04dm: gpio: Fix gpio_get_list_count failing with livetreeSean Anderson1-3/+3
2021-04-13gpio: Drop dm_gpio_set_dir()Simon Glass1-11/+0
2021-03-03gpio: Add a way to read 3-way strapping pinsSimon Glass1-0/+81
2021-03-03gpio: Define the log category in the uclassSimon Glass1-0/+2
2021-03-03gpio: Use an 'ops' variable everywhereSimon Glass1-11/+14
2021-03-03gpio: Replace direction_input() and direction_output()Simon Glass1-9/+6
2021-03-03dm: gpio: Add a way to update flagsSimon Glass1-17/+58
2021-03-03gpio: Rename dm_gpio_get_dir_flags() to dm_gpio_get_flags()Simon Glass1-1/+1
2021-03-03dm: gpio: Rename get_dir_flags() method to get_flags()Simon Glass1-15/+15
2021-03-03dm: gpio: Rename set_dir_flags() method to update_flags()Simon Glass1-8/+8
2021-03-03gpio: Disable functions not used with of-platdataSimon Glass1-0/+2
2021-02-02common: Drop asm/global_data.h from common headerSimon Glass1-0/+1
2021-01-05dm: Rename DM_GET_DRIVER() to DM_DRIVER_GET()Simon Glass1-1/+1
2021-01-05dm: Use access methods for dev/uclass private dataSimon Glass1-1/+1
2020-12-14dm: treewide: Rename ofdata_to_platdata() to of_to_plat()Simon Glass1-2/+2
2020-12-14dm: treewide: Rename dev_get_platdata() to dev_get_plat()Simon Glass1-2/+2
2020-12-14dm: treewide: Rename 'platdata' variables to just 'plat'Simon Glass1-1/+1
2020-12-13dm: treewide: Rename auto_alloc_size members to be shorterSimon Glass1-3/+3
2020-12-01gpio: Convert to use APIs which support live DTPatrick Delaunay1-3/+2
2020-09-30drivers: gpio: Add a managed API to get a GPIO from the device-treeJean-Jacques Hiblot1-0/+71
2020-07-17gpio: Add a method to convert a GPIO to ACPISimon Glass1-0/+22
2020-07-08gpio: search for gpio label if gpio is not found through bank nameHeiko Schocher1-0/+46
2020-07-05gpio-uclass.c: save the GPIOD flags also in the gpio descriptorHeiko Schocher1-4/+4
2020-05-19common: Drop log.h from common headerSimon Glass1-1/+2
2020-05-11gpio: emulate open drain & open source in dm_gpio_set_value()Neil Armstrong1-0/+15
2020-04-17gpio: add ops to set dir flagsPatrick Delaunay1-5/+12
2020-04-17gpio: add ops to get dir flagsPatrick Delaunay1-6/+25
2020-04-17gpio: add support of new GPIO direction flagPatrick Delaunay1-0/+30
2020-04-17gpio: update dir_flags managementPatrick Delaunay1-2/+25
2020-04-17gpio: add helper GPIOD_FLAGS_OUTPUTPatrick Delaunay1-6/+3
2020-04-17gpio: add function check_dir_flagsPatrick Delaunay1-0/+25
2020-04-17gpio: add function _dm_gpio_set_dir_flagsPatrick Delaunay1-13/+25
2020-04-17gpio: add function _gpio_get_valuePatrick Delaunay1-4/+10