2004-10-06 13:28:02 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2004-10-06 13:28:02 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
|
2004-10-06 17:20:47 +00:00
|
|
|
#if CONFIG_CPU == MCF5249
|
2004-10-06 13:28:02 +00:00
|
|
|
#include "mcf5249.h"
|
|
|
|
#endif
|
2005-07-31 08:43:36 +00:00
|
|
|
#if CONFIG_CPU == MCF5250
|
|
|
|
#include "mcf5250.h"
|
|
|
|
#endif
|
2007-07-02 05:16:40 +00:00
|
|
|
#if (CONFIG_CPU == PP5020) || (CONFIG_CPU == PP5022)
|
2005-12-11 22:21:10 +00:00
|
|
|
#include "pp5020.h"
|
|
|
|
#endif
|
2006-02-05 16:52:22 +00:00
|
|
|
#if CONFIG_CPU == PP5002
|
|
|
|
#include "pp5002.h"
|
|
|
|
#endif
|
2006-08-01 22:28:14 +00:00
|
|
|
#if CONFIG_CPU == PP5024
|
|
|
|
#include "pp5024.h"
|
|
|
|
#endif
|
2009-07-13 21:09:39 +00:00
|
|
|
#if CONFIG_CPU == PP6100
|
|
|
|
#include "pp6100.h"
|
|
|
|
#endif
|
2006-01-12 00:35:50 +00:00
|
|
|
#if CONFIG_CPU == PNX0101
|
|
|
|
#include "pnx0101.h"
|
|
|
|
#endif
|
2006-02-24 15:42:52 +00:00
|
|
|
#if CONFIG_CPU == S3C2440
|
|
|
|
#include "s3c2440.h"
|
|
|
|
#endif
|
2007-09-20 04:46:41 +00:00
|
|
|
#if CONFIG_CPU == DM320
|
|
|
|
#include "dm320.h"
|
|
|
|
#endif
|
2007-09-21 15:51:53 +00:00
|
|
|
#if CONFIG_CPU == IMX31L
|
|
|
|
#include "imx31l.h"
|
|
|
|
#endif
|
2008-01-14 22:04:48 +00:00
|
|
|
#ifdef CPU_TCC780X
|
|
|
|
#include "tcc780x.h"
|
|
|
|
#endif
|
2011-01-02 23:16:27 +00:00
|
|
|
#if CONFIG_CPU == S5L8700 || CONFIG_CPU == S5L8701
|
2008-06-27 23:24:34 +00:00
|
|
|
#include "s5l8700.h"
|
|
|
|
#endif
|
2011-01-02 23:16:27 +00:00
|
|
|
#if CONFIG_CPU == S5L8702
|
|
|
|
#include "s5l8702.h"
|
|
|
|
#endif
|
2008-09-05 15:09:40 +00:00
|
|
|
#if CONFIG_CPU == JZ4732
|
|
|
|
#include "jz4740.h"
|
|
|
|
#endif
|
2018-06-28 10:24:26 +00:00
|
|
|
#if CONFIG_CPU == JZ4760B
|
|
|
|
#include "jz4760b.h"
|
|
|
|
#endif
|
2008-10-12 16:46:01 +00:00
|
|
|
#if CONFIG_CPU == AS3525
|
|
|
|
#include "as3525.h"
|
|
|
|
#endif
|
2009-12-31 19:15:20 +00:00
|
|
|
#if CONFIG_CPU == AS3525v2
|
|
|
|
#include "as3525v2.h"
|
|
|
|
#endif
|
2011-05-01 13:02:46 +00:00
|
|
|
#if CONFIG_CPU == IMX233
|
|
|
|
#include "imx233.h"
|
|
|
|
#endif
|
2011-05-30 21:10:37 +00:00
|
|
|
#if CONFIG_CPU == RK27XX
|
|
|
|
#include "rk27xx.h"
|
|
|
|
#endif
|
2021-04-26 21:57:31 +00:00
|
|
|
#if CONFIG_CPU == X1000
|
|
|
|
#include "x1000.h"
|
|
|
|
#endif
|