1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 00:32:04 +02:00

Merge branch 'master' of git://git.denx.de/u-boot-sunxi

- H6 Beelink GS1 board (Clément)
- Olimex A64-Teres-I board (Jonas)
- sunxi build fix for CONFIG_CMD_PXE|DHCP (Ondrej)
- Change include order (Jagan)
- EPHY clock changes (Jagan)
- EMAC enablement on Cubietruck Plus, BPI-M3 (Chen-Yu Tsai)
This commit is contained in:
Tom Rini
2019-05-08 16:21:43 -04:00
20 changed files with 798 additions and 63 deletions

View File

@@ -6,6 +6,7 @@
#ifndef _RESET_H
#define _RESET_H
#include <dm/ofnode.h>
#include <linux/errno.h>
/**
@@ -102,6 +103,21 @@ struct reset_ctl_bulk {
int reset_get_by_index(struct udevice *dev, int index,
struct reset_ctl *reset_ctl);
/**
* reset_get_by_index_nodev - Get/request a reset signal by integer index
* without a device.
*
* This is a version of reset_get_by_index() that does not use a device.
*
* @node: The client ofnode.
* @index: The index of the reset signal to request, within the client's
* list of reset signals.
* @reset_ctl A pointer to a reset control struct to initialize.
* @return 0 if OK, or a negative error code.
*/
int reset_get_by_index_nodev(ofnode node, int index,
struct reset_ctl *reset_ctl);
/**
* reset_get_bulk - Get/request all reset signals of a device.
*