2011-05-01 13:02:46 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 by amaury Pouly
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "gcc_extensions.h"
|
|
|
|
#include "system-target.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "clkctrl-imx233.h"
|
|
|
|
#include "pinctrl-imx233.h"
|
|
|
|
#include "timrot-imx233.h"
|
2011-06-17 22:30:58 +00:00
|
|
|
#include "dma-imx233.h"
|
|
|
|
#include "ssp-imx233.h"
|
2011-07-03 15:18:41 +00:00
|
|
|
#include "i2c-imx233.h"
|
2012-01-15 00:38:41 +00:00
|
|
|
#include "dcp-imx233.h"
|
2012-05-19 11:40:34 +00:00
|
|
|
#include "pwm-imx233.h"
|
2012-05-19 11:23:17 +00:00
|
|
|
#include "icoll-imx233.h"
|
2012-03-17 16:39:27 +00:00
|
|
|
#include "lradc-imx233.h"
|
2012-05-19 10:57:04 +00:00
|
|
|
#include "rtc-imx233.h"
|
2011-05-01 13:02:46 +00:00
|
|
|
#include "lcd.h"
|
|
|
|
#include "backlight-target.h"
|
2012-01-08 00:18:43 +00:00
|
|
|
#include "button.h"
|
2012-03-15 13:59:20 +00:00
|
|
|
#include "fmradio_i2c.h"
|
2011-05-01 13:02:46 +00:00
|
|
|
|
2011-09-13 23:38:49 +00:00
|
|
|
void imx233_chip_reset(void)
|
2011-05-01 13:02:46 +00:00
|
|
|
{
|
|
|
|
HW_CLKCTRL_RESET = HW_CLKCTRL_RESET_CHIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
void system_reboot(void)
|
|
|
|
{
|
|
|
|
_backlight_off();
|
|
|
|
|
|
|
|
disable_irq();
|
|
|
|
|
|
|
|
/* use watchdog to reset */
|
|
|
|
imx233_chip_reset();
|
|
|
|
while(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void system_exception_wait(void)
|
|
|
|
{
|
2011-06-30 17:31:40 +00:00
|
|
|
/* make sure lcd and backlight are on */
|
2011-11-17 23:10:22 +00:00
|
|
|
lcd_update();
|
2011-06-30 17:31:40 +00:00
|
|
|
_backlight_on();
|
2011-11-17 23:10:22 +00:00
|
|
|
_backlight_set_brightness(DEFAULT_BRIGHTNESS_SETTING);
|
2011-06-30 17:31:40 +00:00
|
|
|
/* wait until button release (if a button is pressed) */
|
2012-05-19 11:43:41 +00:00
|
|
|
#ifdef HAVE_BUTTON_DATA
|
|
|
|
int data;
|
|
|
|
while(button_read_device(&data));
|
|
|
|
/* then wait until next button press */
|
|
|
|
while(!button_read_device(&data));
|
|
|
|
#else
|
2011-06-30 17:31:40 +00:00
|
|
|
while(button_read_device());
|
|
|
|
/* then wait until next button press */
|
|
|
|
while(!button_read_device());
|
2012-05-19 11:43:41 +00:00
|
|
|
#endif
|
2011-05-01 13:02:46 +00:00
|
|
|
}
|
|
|
|
|
2011-09-06 00:27:38 +00:00
|
|
|
int system_memory_guard(int newmode)
|
|
|
|
{
|
|
|
|
(void)newmode;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-23 11:45:18 +00:00
|
|
|
static void set_page_tables(void)
|
|
|
|
{
|
|
|
|
/* map every memory region to itself */
|
|
|
|
map_section(0, 0, 0x1000, CACHE_NONE);
|
|
|
|
|
|
|
|
/* map RAM and enable caching for it */
|
2011-09-05 11:29:32 +00:00
|
|
|
map_section(DRAM_ORIG, CACHED_DRAM_ADDR, MEMORYSIZE, CACHE_ALL);
|
|
|
|
map_section(DRAM_ORIG, BUFFERED_DRAM_ADDR, MEMORYSIZE, BUFFERED);
|
2011-07-23 11:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void memory_init(void)
|
|
|
|
{
|
|
|
|
ttb_init();
|
|
|
|
set_page_tables();
|
|
|
|
enable_mmu();
|
|
|
|
}
|
|
|
|
|
2011-05-01 13:02:46 +00:00
|
|
|
void system_init(void)
|
|
|
|
{
|
2012-05-19 10:57:04 +00:00
|
|
|
imx233_rtc_init();
|
2012-05-19 11:23:17 +00:00
|
|
|
imx233_icoll_init();
|
2011-05-01 13:02:46 +00:00
|
|
|
imx233_pinctrl_init();
|
|
|
|
imx233_timrot_init();
|
2011-06-17 22:30:58 +00:00
|
|
|
imx233_dma_init();
|
|
|
|
imx233_ssp_init();
|
2012-01-15 00:38:41 +00:00
|
|
|
imx233_dcp_init();
|
2012-05-19 11:40:34 +00:00
|
|
|
imx233_pwm_init();
|
2012-03-17 16:39:27 +00:00
|
|
|
imx233_lradc_init();
|
2012-03-15 13:59:20 +00:00
|
|
|
imx233_i2c_init();
|
2012-05-19 16:03:27 +00:00
|
|
|
#if !defined(BOOTLOADER) && \
|
|
|
|
(defined(SANSA_FUZEPLUS) || defined(CREATIVE_ZENXFI3))
|
2012-03-15 13:59:20 +00:00
|
|
|
fmradio_i2c_init();
|
|
|
|
#endif
|
2011-05-01 13:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool imx233_us_elapsed(uint32_t ref, unsigned us_delay)
|
|
|
|
{
|
|
|
|
uint32_t cur = HW_DIGCTL_MICROSECONDS;
|
|
|
|
if(ref + us_delay <= ref)
|
|
|
|
return !(cur > ref) && !(cur < (ref + us_delay));
|
|
|
|
else
|
|
|
|
return (cur < ref) || cur >= (ref + us_delay);
|
|
|
|
}
|
|
|
|
|
|
|
|
void imx233_reset_block(volatile uint32_t *block_reg)
|
|
|
|
{
|
2011-09-13 23:38:49 +00:00
|
|
|
/* soft-reset */
|
2011-05-01 13:02:46 +00:00
|
|
|
__REG_SET(*block_reg) = __BLOCK_SFTRST;
|
2011-09-13 23:38:49 +00:00
|
|
|
/* make sure block is gated off */
|
2011-05-01 13:02:46 +00:00
|
|
|
while(!(*block_reg & __BLOCK_CLKGATE));
|
2011-09-13 23:38:49 +00:00
|
|
|
/* bring block out of reset */
|
2011-05-01 13:02:46 +00:00
|
|
|
__REG_CLR(*block_reg) = __BLOCK_SFTRST;
|
|
|
|
while(*block_reg & __BLOCK_SFTRST);
|
2011-09-13 23:38:49 +00:00
|
|
|
/* make sure clock is running */
|
2011-05-01 13:02:46 +00:00
|
|
|
__REG_CLR(*block_reg) = __BLOCK_CLKGATE;
|
|
|
|
while(*block_reg & __BLOCK_CLKGATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void udelay(unsigned us)
|
|
|
|
{
|
|
|
|
uint32_t ref = HW_DIGCTL_MICROSECONDS;
|
|
|
|
while(!imx233_us_elapsed(ref, us));
|
|
|
|
}
|
|
|
|
|
2011-06-30 17:31:40 +00:00
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
|
|
|
void set_cpu_frequency(long frequency)
|
|
|
|
{
|
|
|
|
switch(frequency)
|
|
|
|
{
|
2011-09-13 23:38:49 +00:00
|
|
|
#if 0
|
2011-06-30 17:31:40 +00:00
|
|
|
case IMX233_CPUFREQ_454_MHz:
|
|
|
|
/* clk_h@clk_p/3 */
|
|
|
|
imx233_set_clock_divisor(CLK_AHB, 3);
|
|
|
|
/* clk_p@ref_cpu/1*18/19 */
|
|
|
|
imx233_set_fractional_divisor(CLK_CPU, 19);
|
|
|
|
imx233_set_clock_divisor(CLK_CPU, 1);
|
|
|
|
/* ref_cpu@480 MHz
|
|
|
|
* clk_p@454.74 MHz
|
|
|
|
* clk_h@151.58 MHz */
|
|
|
|
break;
|
2011-09-13 23:38:49 +00:00
|
|
|
#endif
|
2011-06-30 17:31:40 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2011-09-14 11:50:06 +00:00
|
|
|
|
|
|
|
void imx233_enable_usb_controller(bool enable)
|
|
|
|
{
|
|
|
|
if(enable)
|
|
|
|
__REG_CLR(HW_DIGCTL_CTRL) = HW_DIGCTL_CTRL__USB_CLKGATE;
|
|
|
|
else
|
|
|
|
__REG_SET(HW_DIGCTL_CTRL) = HW_DIGCTL_CTRL__USB_CLKGATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void imx233_enable_usb_phy(bool enable)
|
|
|
|
{
|
|
|
|
if(enable)
|
|
|
|
{
|
|
|
|
__REG_CLR(HW_USBPHY_CTRL) = __BLOCK_CLKGATE | __BLOCK_SFTRST;
|
|
|
|
__REG_CLR(HW_USBPHY_PWD) = HW_USBPHY_PWD__ALL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
__REG_SET(HW_USBPHY_PWD) = HW_USBPHY_PWD__ALL;
|
|
|
|
__REG_SET(HW_USBPHY_CTRL) = __BLOCK_CLKGATE | __BLOCK_SFTRST;
|
|
|
|
}
|
|
|
|
}
|