1*a3b02a1dSHeiner Kallweit /* 2*a3b02a1dSHeiner Kallweit * This file is provided under a dual BSD/GPLv2 license. When using or 3*a3b02a1dSHeiner Kallweit * redistributing this file, you may do so under either license. 4*a3b02a1dSHeiner Kallweit * 5*a3b02a1dSHeiner Kallweit * GPL LICENSE SUMMARY 6*a3b02a1dSHeiner Kallweit * 7*a3b02a1dSHeiner Kallweit * Copyright (c) 2016 BayLibre, SAS. 8*a3b02a1dSHeiner Kallweit * Author: Neil Armstrong <narmstrong@baylibre.com> 9*a3b02a1dSHeiner Kallweit * 10*a3b02a1dSHeiner Kallweit * This program is free software; you can redistribute it and/or modify 11*a3b02a1dSHeiner Kallweit * it under the terms of version 2 of the GNU General Public License as 12*a3b02a1dSHeiner Kallweit * published by the Free Software Foundation. 13*a3b02a1dSHeiner Kallweit * 14*a3b02a1dSHeiner Kallweit * This program is distributed in the hope that it will be useful, but 15*a3b02a1dSHeiner Kallweit * WITHOUT ANY WARRANTY; without even the implied warranty of 16*a3b02a1dSHeiner Kallweit * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17*a3b02a1dSHeiner Kallweit * General Public License for more details. 18*a3b02a1dSHeiner Kallweit * 19*a3b02a1dSHeiner Kallweit * You should have received a copy of the GNU General Public License 20*a3b02a1dSHeiner Kallweit * along with this program; if not, see <http://www.gnu.org/licenses/>. 21*a3b02a1dSHeiner Kallweit * The full GNU General Public License is included in this distribution 22*a3b02a1dSHeiner Kallweit * in the file called COPYING. 23*a3b02a1dSHeiner Kallweit * 24*a3b02a1dSHeiner Kallweit * BSD LICENSE 25*a3b02a1dSHeiner Kallweit * 26*a3b02a1dSHeiner Kallweit * Copyright (c) 2016 BayLibre, SAS. 27*a3b02a1dSHeiner Kallweit * Author: Neil Armstrong <narmstrong@baylibre.com> 28*a3b02a1dSHeiner Kallweit * 29*a3b02a1dSHeiner Kallweit * Redistribution and use in source and binary forms, with or without 30*a3b02a1dSHeiner Kallweit * modification, are permitted provided that the following conditions 31*a3b02a1dSHeiner Kallweit * are met: 32*a3b02a1dSHeiner Kallweit * 33*a3b02a1dSHeiner Kallweit * * Redistributions of source code must retain the above copyright 34*a3b02a1dSHeiner Kallweit * notice, this list of conditions and the following disclaimer. 35*a3b02a1dSHeiner Kallweit * * Redistributions in binary form must reproduce the above copyright 36*a3b02a1dSHeiner Kallweit * notice, this list of conditions and the following disclaimer in 37*a3b02a1dSHeiner Kallweit * the documentation and/or other materials provided with the 38*a3b02a1dSHeiner Kallweit * distribution. 39*a3b02a1dSHeiner Kallweit * * Neither the name of Intel Corporation nor the names of its 40*a3b02a1dSHeiner Kallweit * contributors may be used to endorse or promote products derived 41*a3b02a1dSHeiner Kallweit * from this software without specific prior written permission. 42*a3b02a1dSHeiner Kallweit * 43*a3b02a1dSHeiner Kallweit * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 44*a3b02a1dSHeiner Kallweit * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 45*a3b02a1dSHeiner Kallweit * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 46*a3b02a1dSHeiner Kallweit * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 47*a3b02a1dSHeiner Kallweit * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 48*a3b02a1dSHeiner Kallweit * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 49*a3b02a1dSHeiner Kallweit * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 50*a3b02a1dSHeiner Kallweit * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 51*a3b02a1dSHeiner Kallweit * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 52*a3b02a1dSHeiner Kallweit * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 53*a3b02a1dSHeiner Kallweit * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 54*a3b02a1dSHeiner Kallweit */ 55*a3b02a1dSHeiner Kallweit 56*a3b02a1dSHeiner Kallweit #ifndef DT_BINDINGS_RESET_AMLOGIC_MESON_GXBB_AOCLK 57*a3b02a1dSHeiner Kallweit #define DT_BINDINGS_RESET_AMLOGIC_MESON_GXBB_AOCLK 58*a3b02a1dSHeiner Kallweit 59*a3b02a1dSHeiner Kallweit #define RESET_AO_REMOTE 0 60*a3b02a1dSHeiner Kallweit #define RESET_AO_I2C_MASTER 1 61*a3b02a1dSHeiner Kallweit #define RESET_AO_I2C_SLAVE 2 62*a3b02a1dSHeiner Kallweit #define RESET_AO_UART1 3 63*a3b02a1dSHeiner Kallweit #define RESET_AO_UART2 4 64*a3b02a1dSHeiner Kallweit #define RESET_AO_IR_BLASTER 5 65*a3b02a1dSHeiner Kallweit 66*a3b02a1dSHeiner Kallweit #endif 67