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