1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * This header provides constants for AT91 pmc status.
4 * The constants defined in this header are being used in dts and PMC code.
5 *
6 * Copyright (C) 2020 Microchip Technology Inc. and its subsidiaries
7 *
8 * Author: Claudiu Beznea <claudiu.beznea@microchip.com>
9 *
10 * Based on include/dt-bindings/clock/at91.h on Linux.
11 */
12
13#ifndef _DT_BINDINGS_CLK_AT91_H
14#define _DT_BINDINGS_CLK_AT91_H
15
16#define PMC_TYPE_CORE		1
17#define PMC_TYPE_SYSTEM		2
18#define PMC_TYPE_PERIPHERAL	3
19#define PMC_TYPE_GCK		4
20#define PMC_TYPE_SLOW		5
21#define USB_UTMI		6
22
23#define USB_UTMI1		0
24#define USB_UTMI2		1
25#define USB_UTMI3		2
26
27#endif
28