1 /* 2 * Joshua Henderson <joshua.henderson@microchip.com> 3 * Copyright (C) 2015 Microchip Technology Inc. All rights reserved. 4 * 5 * This program is free software; you can distribute it and/or modify it 6 * under the terms of the GNU General Public License (Version 2) as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 * for more details. 13 */ 14 #ifndef PIC32MZDA_COMMON_H 15 #define PIC32MZDA_COMMON_H 16 17 /* early clock */ 18 u32 pic32_get_pbclk(int bus); 19 u32 pic32_get_sysclk(void); 20 21 /* Device configuration */ 22 void __init pic32_config_init(void); 23 int pic32_set_lcd_mode(int mode); 24 int pic32_set_sdhci_adma_fifo_threshold(u32 rthrs, u32 wthrs); 25 u32 pic32_get_boot_status(void); 26 int pic32_disable_lcd(void); 27 int pic32_enable_lcd(void); 28 29 #endif 30