imx233: move SoC-specific config symbols to separate header

Change-Id: Id044c59045712f1b96b93b5a93b07ddaa46bab7c
This commit is contained in:
Aidan MacDonald 2026-01-19 13:11:14 +00:00 committed by Solomon Peachy
parent ef31aae6f4
commit 7e31f2a6d5
12 changed files with 44 additions and 11 deletions

View file

@ -386,17 +386,6 @@ Lyre prototype 1 */
#define CPU 0 #define CPU 0
#define COP 1 #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 */ /* CONFIG_BUFLIB_BACKEND */
#define BUFLIB_BACKEND_MEMPOOL 0 /* Default memory pool backed buflib */ #define BUFLIB_BACKEND_MEMPOOL 0 /* Default memory pool backed buflib */
#define BUFLIB_BACKEND_MALLOC 1 /* malloc() buflib (for debugging) */ #define BUFLIB_BACKEND_MALLOC 1 /* malloc() buflib (for debugging) */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Creative Zen * This config file is for the Creative Zen
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Creative ZEN Mozaic * This config file is for the Creative ZEN Mozaic
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Creative ZEN V * This config file is for the Creative ZEN V
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Creative Zen X-Fi * This config file is for the Creative Zen X-Fi
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Creative Zen X-Fi2 * This config file is for the Creative Zen X-Fi2
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Creative Zen X-Fi3 * This config file is for the Creative Zen X-Fi3
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Creative Zen X-Fi Style * This config file is for the Creative Zen X-Fi Style
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Sandisk Sansa Fuze+ * This config file is for the Sandisk Sansa Fuze+
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Sony NWZ-E360 series * This config file is for the Sony NWZ-E360 series
*/ */

View file

@ -1,3 +1,6 @@
/* Pull in SoC-specific defines */
#include "imx233-config.h"
/* /*
* This config file is for the Sony NWZ-E370/E380 series * This config file is for the Sony NWZ-E370/E380 series
*/ */

View 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 */