1
0
Fork 0
forked from len0rd/rockbox

imx31: Rename clkctl-imx31.* to ccm-imx31.* and move up from ...imx31/gigabeat-s to .../imx31. A bunch more should probably go up a level too.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20443 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2009-03-22 02:13:27 +00:00
parent b7f7655dc2
commit ba71cc540c
15 changed files with 17 additions and 17 deletions

View file

@ -758,6 +758,7 @@ target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
#ifndef SIMULATOR
target/arm/lcd-as-memframe.S
target/arm/mmu-arm.S
target/arm/imx31/ccm-imx31.c
target/arm/imx31/debug-imx31.c
target/arm/imx31/rolo_restart.S
target/arm/imx31/sdma-imx31.c
@ -766,7 +767,6 @@ target/arm/imx31/gigabeat-s/ata-imx31.c
target/arm/imx31/gigabeat-s/avic-imx31.c
target/arm/imx31/gigabeat-s/backlight-imx31.c
target/arm/imx31/gigabeat-s/button-imx31.c
target/arm/imx31/gigabeat-s/clkctl-imx31.c
target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
target/arm/imx31/gigabeat-s/gpio-imx31.c
target/arm/imx31/gigabeat-s/kernel-imx31.c

View file

@ -22,7 +22,7 @@
****************************************************************************/
#include "system.h"
#include "cpu.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
unsigned int ccm_get_src_pll(void)
{

View file

@ -28,7 +28,7 @@
#include "debug-target.h"
#include "mc13783.h"
#include "adc.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
bool __dbg_hw_info(void)
{

View file

@ -27,7 +27,7 @@
#include "panic.h"
#include "ata.h"
#include "ata-target.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#ifdef HAVE_ATA_DMA
#include "sdma-imx31.h"
#include "mmu-imx31.h"

View file

@ -27,7 +27,7 @@
#include "system.h"
#include "backlight-target.h"
#include "avic-imx31.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "mc13783.h"
/* Most code in here is taken from the Linux BSP provided by Freescale

View file

@ -23,7 +23,7 @@
#include "system.h"
#include "kernel.h"
#include "avic-imx31.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "i2c-imx31.h"
/* Forward interrupt handler declarations */

View file

@ -23,7 +23,7 @@
#include "avic-imx31.h"
#include "spi-imx31.h"
#include "mc13783.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "sdma-imx31.h"
#include "kernel.h"
#include "thread.h"

View file

@ -23,7 +23,7 @@
#include "kernel.h"
#include "audio.h"
#include "sound.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "sdma-imx31.h"
#include "mmu-imx31.h"

View file

@ -22,7 +22,7 @@
#include "system.h"
#include "spi-imx31.h"
#include "avic-imx31.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "debug.h"
#include "kernel.h"

View file

@ -29,7 +29,7 @@
#include "lcd.h"
#include "serial-imx31.h"
#include "debug.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "mc13783.h"
static unsigned long product_rev;

View file

@ -21,7 +21,7 @@
#include "config.h"
#include "system.h"
#include "timer.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "avic-imx31.h"
static void __attribute__((interrupt("IRQ"))) EPIT2_HANDLER(void)

View file

@ -27,7 +27,7 @@
#include "usb_core.h"
#include "usb_drv.h"
#include "usb-target.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "power-imx31.h"
#include "avic-imx31.h"
#include "mc13783.h"

View file

@ -53,10 +53,10 @@ void audiohw_init(void)
* INT_BIT_CLK (MCLK) / 1.5 = 11289600Hz = 256*fs = SYSCLK
*/
imx31_regmod32(&CCM_PDR1,
(1-1) << CCM_PDR1_SSI1_PRE_PODF_POS |
(5-1) << CCM_PDR1_SSI1_PODF_POS |
(8-1) << CCM_PDR1_SSI2_PRE_PODF_POS,
(64-1) << CCM_PDR1_SSI2_PODF_POS |
((1-1) << CCM_PDR1_SSI1_PRE_PODF_POS) |
((5-1) << CCM_PDR1_SSI1_PODF_POS) |
((8-1) << CCM_PDR1_SSI2_PRE_PODF_POS),
((64-1) << CCM_PDR1_SSI2_PODF_POS) |
CCM_PDR1_SSI1_PODF | CCM_PDR1_SSI2_PODF |
CCM_PDR1_SSI1_PRE_PODF | CCM_PDR1_SSI2_PRE_PODF);

View file

@ -23,7 +23,7 @@
#include <string.h>
#include "logf.h"
#include "panic.h"
#include "clkctl-imx31.h"
#include "ccm-imx31.h"
#include "avic-imx31.h"
#include "sdma_struct.h"
#include "sdma-imx31.h"