mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
imx233: move SoC-specific config symbols to separate header
Change-Id: Id044c59045712f1b96b93b5a93b07ddaa46bab7c
This commit is contained in:
parent
ef31aae6f4
commit
7e31f2a6d5
12 changed files with 44 additions and 11 deletions
|
|
@ -386,17 +386,6 @@ Lyre prototype 1 */
|
|||
#define CPU 0
|
||||
#define COP 1
|
||||
|
||||
/* imx233 specific: IMX233_PACKAGE */
|
||||
#define IMX233_BGA100 0
|
||||
#define IMX233_BGA169 1
|
||||
#define IMX233_TQFP100 2
|
||||
#define IMX233_TQFP128 3
|
||||
#define IMX233_LQFP100 4
|
||||
|
||||
/* IMX233_PARTITIONS */
|
||||
#define IMX233_FREESCALE (1 << 0) /* Freescale I.MX233 nonstandard two-level MBR */
|
||||
#define IMX233_CREATIVE (1 << 1) /* Creative MBLK windowing */
|
||||
|
||||
/* CONFIG_BUFLIB_BACKEND */
|
||||
#define BUFLIB_BACKEND_MEMPOOL 0 /* Default memory pool backed buflib */
|
||||
#define BUFLIB_BACKEND_MALLOC 1 /* malloc() buflib (for debugging) */
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Creative Zen
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Creative ZEN Mozaic
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Creative ZEN V
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Creative Zen X-Fi
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Creative Zen X-Fi2
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Creative Zen X-Fi3
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Creative Zen X-Fi Style
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Sandisk Sansa Fuze+
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Sony NWZ-E360 series
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
/* Pull in SoC-specific defines */
|
||||
#include "imx233-config.h"
|
||||
|
||||
/*
|
||||
* This config file is for the Sony NWZ-E370/E380 series
|
||||
*/
|
||||
|
|
|
|||
14
firmware/target/arm/imx233/imx233-config.h
Normal file
14
firmware/target/arm/imx233/imx233-config.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* To be included by config/TARGET.h
|
||||
*/
|
||||
|
||||
/* IMX233_PACKAGE */
|
||||
#define IMX233_BGA100 0
|
||||
#define IMX233_BGA169 1
|
||||
#define IMX233_TQFP100 2
|
||||
#define IMX233_TQFP128 3
|
||||
#define IMX233_LQFP100 4
|
||||
|
||||
/* IMX233_PARTITIONS */
|
||||
#define IMX233_FREESCALE (1 << 0) /* Freescale I.MX233 nonstandard two-level MBR */
|
||||
#define IMX233_CREATIVE (1 << 1) /* Creative MBLK windowing */
|
||||
Loading…
Add table
Add a link
Reference in a new issue