mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
3e066bcaef
This patch adds reset controller driver for MediaTek SoCs. Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
13 lines
261 B
C
13 lines
261 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2018 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __MEDIATEK_RESET_H
|
|
#define __MEDIATEK_RESET_H
|
|
|
|
#include <dm.h>
|
|
|
|
int mediatek_reset_bind(struct udevice *pdev, u32 regofs, u32 num_regs);
|
|
|
|
#endif /* __MEDIATEK_RESET_H */
|