Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5b2e6555 authored by Greg Ungerer's avatar Greg Ungerer
Browse files

m68knommu: make Coldfire 548x support more generic



The ColdFire 547x family of processors is very similar to the ColdFire
548x series. Almost all of the support for them is the same. Make the
code supporting the 548x more gneric, so it will be capable of
supporting both families.

For the most part this is a renaming excerise to make the support
code more obviously apply to both families.

Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent 9c68015b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
 * (C) Copyright 2000-2004, Greg Ungerer <gerg@snapgear.com>
 */
#include <linux/mm.h>
#if defined(CONFIG_M5407) || defined(CONFIG_M548x)
#if defined(CONFIG_M5407) || defined(CONFIG_M54xx)
#include <asm/m54xxacr.h>
#endif

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
 */
#define	MCF_MBAR	0x10000000
#define	MCF_MBAR2	0x80000000
#if defined(CONFIG_M548x)
#if defined(CONFIG_M54xx)
#define	MCF_IPSBAR	MCF_MBAR
#elif defined(CONFIG_M520x)
#define	MCF_IPSBAR	0xFC000000
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@
#if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || \
    defined(CONFIG_M520x) || defined(CONFIG_M523x) || \
    defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
    defined(CONFIG_M532x) || defined(CONFIG_M548x)
    defined(CONFIG_M532x) || defined(CONFIG_M54xx)

/* These parts have GPIO organized by 8 bit ports */

+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@
#define ICACHE_SIZE 0x4000	/* instruction - 16k */
#define DCACHE_SIZE 0x2000	/* data - 8k */

#elif defined(CONFIG_M548x)
#elif defined(CONFIG_M54xx)

#define ICACHE_SIZE 0x8000	/* instruction - 32k */
#define DCACHE_SIZE 0x8000	/* data - 32k */
+5 −5
Original line number Diff line number Diff line
/*
 * File:	m548xgpt.h
 * Purpose:	Register and bit definitions for the MCF548X
 * File:	m54xxgpt.h
 * Purpose:	Register and bit definitions for the MCF54XX
 *
 * Notes:
 *
 */

#ifndef m548xgpt_h
#define m548xgpt_h
#ifndef m54xxgpt_h
#define m54xxgpt_h

/*********************************************************************
*
@@ -85,4 +85,4 @@

/********************************************************************/

#endif /* m548xgpt_h */
#endif /* m54xxgpt_h */
Loading