m1n1/src/pmgr.h
Sven Peter b31e1265ff pmgr: add functions to enable/disable clocks
Signed-off-by: Sven Peter <sven@svenpeter.dev>
2021-04-11 05:26:29 +09:00

16 lines
274 B
C

/* SPDX-License-Identifier: MIT */
#ifndef PMGR_H
#define PMGR_H
#include "types.h"
int pmgr_init(void);
int pmgr_clock_enable(u16 id);
int pmgr_clock_disable(u16 id);
int pmgr_adt_clocks_enable(const char *path);
int pmgr_adt_clocks_disable(const char *path);
#endif