1 /* 2 * Copyright 2016 Maxime Ripard 3 * 4 * Maxime Ripard <maxime.ripard@free-electrons.com> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 */ 16 17 #ifndef _RST_SUN5I_H_ 18 #define _RST_SUN5I_H_ 19 20 #define RST_USB_PHY0 0 21 #define RST_USB_PHY1 1 22 #define RST_GPS 2 23 #define RST_DE_BE 3 24 #define RST_DE_FE 4 25 #define RST_TVE 5 26 #define RST_LCD 6 27 #define RST_CSI 7 28 #define RST_VE 8 29 #define RST_GPU 9 30 #define RST_IEP 10 31 32 #endif /* _RST_SUN5I_H_ */ 33