blob: 4ed2e43ab3ad8026a099974603aaea2d1578af58 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/***************************************************************************/
3
4/*
Greg Ungererece9ae62014-08-19 11:55:24 +10005 * m5307.c -- platform support for ColdFire 5307 based boards
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
8 * Copyright (C) 2000, Lineo (www.lineo.com)
9 */
10
11/***************************************************************************/
12
Arnd Bergmann63aadb72021-05-31 11:12:55 +020013#include <linux/clkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/param.h>
16#include <linux/init.h>
Greg Ungerer96db2712008-02-01 17:34:55 +100017#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/machdep.h>
19#include <asm/coldfire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/mcfsim.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/mcfwdebug.h>
Greg Ungerer91ca1bb2012-07-13 16:05:11 +100022#include <asm/mcfclk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/***************************************************************************/
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/*
27 * Some platforms need software versions of the GPIO data registers.
28 */
29unsigned short ppdata;
30unsigned char ledbank = 0xff;
31
32/***************************************************************************/
33
Greg Ungerer91ca1bb2012-07-13 16:05:11 +100034DEFINE_CLK(pll, "pll.0", MCF_CLK);
35DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
Greg Ungerer91ca1bb2012-07-13 16:05:11 +100036
Arnd Bergmann63aadb72021-05-31 11:12:55 +020037static struct clk_lookup m5307_clk_lookup[] = {
38 CLKDEV_INIT(NULL, "pll.0", &clk_pll),
39 CLKDEV_INIT(NULL, "sys.0", &clk_sys),
40 CLKDEV_INIT("mcftmr.0", NULL, &clk_sys),
41 CLKDEV_INIT("mcftmr.1", NULL, &clk_sys),
42 CLKDEV_INIT("mcfuart.0", NULL, &clk_sys),
43 CLKDEV_INIT("mcfuart.1", NULL, &clk_sys),
44 CLKDEV_INIT("imx1-i2c.0", NULL, &clk_sys),
Greg Ungerer91ca1bb2012-07-13 16:05:11 +100045};
46
47/***************************************************************************/
48
Steven King2d24b532014-06-30 09:53:19 -070049static void __init m5307_i2c_init(void)
50{
51#if IS_ENABLED(CONFIG_I2C_IMX)
52 writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL5 | MCFSIM_ICR_PRI0,
53 MCFSIM_I2CICR);
54 mcf_mapirq2imr(MCF_IRQ_I2C0, MCFINTC_I2C);
55#endif /* IS_ENABLED(CONFIG_I2C_IMX) */
56}
57
58/***************************************************************************/
59
Greg Ungerer96db2712008-02-01 17:34:55 +100060void __init config_BSP(char *commandp, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Adrian Bunk3947fca2009-01-13 14:20:01 +100062#if defined(CONFIG_NETtel) || \
Greg Ungerercff28b52008-05-01 12:17:21 +100063 defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 /* Copy command line from FLASH to local buffer... */
65 memcpy(commandp, (char *) 0xf0004000, size);
66 commandp[size-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#endif
68
Greg Ungerer35aefb22012-01-23 15:34:58 +100069 mach_sched_init = hw_timer_init;
Greg Ungerer39f0fb62009-05-22 13:33:35 +100070
71 /* Only support the external interrupts on their primary level */
72 mcf_mapirq2imr(25, MCFINTC_EINT1);
73 mcf_mapirq2imr(27, MCFINTC_EINT3);
74 mcf_mapirq2imr(29, MCFINTC_EINT5);
75 mcf_mapirq2imr(31, MCFINTC_EINT7);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Greg Ungerer96db2712008-02-01 17:34:55 +100077#ifdef CONFIG_BDM_DISABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 /*
79 * Disable the BDM clocking. This also turns off most of the rest of
80 * the BDM device. This is good for EMC reasons. This option is not
81 * incompatible with the memory protection option.
82 */
83 wdebug(MCFDEBUG_CSR, MCFDEBUG_CSR_PSTCLK);
84#endif
Steven King2d24b532014-06-30 09:53:19 -070085 m5307_i2c_init();
Arnd Bergmann63aadb72021-05-31 11:12:55 +020086
87 clkdev_add_table(m5307_clk_lookup, ARRAY_SIZE(m5307_clk_lookup));
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90/***************************************************************************/