1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Novena board support 4 * 5 * Copyright (C) 2014 Marek Vasut <marex@denx.de> 6 */ 7 8 #ifndef __BOARD_KOSAGI_NOVENA_NOVENA_H__ 9 #define __BOARD_KOSAGI_NOVENA_NOVENA_H__ 10 11 #define NOVENA_AUDIO_PWRON IMX_GPIO_NR(5, 17) 12 #define NOVENA_BACKLIGHT_PWM_GPIO IMX_GPIO_NR(4, 29) 13 #define NOVENA_BACKLIGHT_PWR_GPIO IMX_GPIO_NR(4, 15) 14 #define NOVENA_BUTTON_GPIO IMX_GPIO_NR(4, 14) 15 #define NOVENA_FPGA_RESET_N_GPIO IMX_GPIO_NR(5, 7) 16 #define NOVENA_HDMI_GHOST_HPD IMX_GPIO_NR(5, 4) 17 #define NOVENA_ITE6251_PWR_GPIO IMX_GPIO_NR(5, 28) 18 #define NOVENA_PCIE_DISABLE_GPIO IMX_GPIO_NR(2, 16) 19 #define NOVENA_PCIE_POWER_ON_GPIO IMX_GPIO_NR(7, 12) 20 #define NOVENA_PCIE_RESET_GPIO IMX_GPIO_NR(3, 29) 21 #define NOVENA_PCIE_WAKE_UP_GPIO IMX_GPIO_NR(3, 22) 22 #define NOVENA_SD_CD IMX_GPIO_NR(1, 4) 23 #define NOVENA_SD_WP IMX_GPIO_NR(1, 2) 24 25 #define NOVENA_IT6251_I2C_BUS 2 26 #define NOVENA_IT6251_CHIPADDR 0x5c 27 #define NOVENA_IT6251_LVDSADDR 0x5e 28 29 void setup_display_clock(void); 30 void setup_display_lvds(void); 31 32 #endif /* __BOARD_KOSAGI_NOVENA_NOVENA_H__ */ 33