Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/***************************************************************************/
  3
  4/*
  5 *	m5249.c  -- platform support for ColdFire 5249 based boards
  6 *
  7 *	Copyright (C) 2002, Greg Ungerer (gerg@snapgear.com)
  8 */
  9
 10/***************************************************************************/
 11
 12#include <linux/clkdev.h>
 13#include <linux/kernel.h>
 14#include <linux/param.h>
 15#include <linux/init.h>
 16#include <linux/io.h>
 17#include <linux/platform_device.h>
 18#include <asm/machdep.h>
 19#include <asm/coldfire.h>
 20#include <asm/mcfsim.h>
 21#include <asm/mcfclk.h>
 22
 23/***************************************************************************/
 24
 25DEFINE_CLK(pll, "pll.0", MCF_CLK);
 26DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
 27
 28struct clk_lookup m5249_clk_lookup[] = {
 29	CLKDEV_INIT(NULL, "pll.0", &clk_pll),
 30	CLKDEV_INIT(NULL, "sys.0", &clk_sys),
 31	CLKDEV_INIT("mcftmr.0", NULL, &clk_sys),
 32	CLKDEV_INIT("mcftmr.1", NULL, &clk_sys),
 33	CLKDEV_INIT("mcfuart.0", NULL, &clk_sys),
 34	CLKDEV_INIT("mcfuart.1", NULL, &clk_sys),
 35	CLKDEV_INIT("mcfqspi.0", NULL, &clk_sys),
 36	CLKDEV_INIT("imx1-i2c.0", NULL, &clk_sys),
 37	CLKDEV_INIT("imx1-i2c.1", NULL, &clk_sys),
 
 
 
 
 
 
 
 
 38};
 39
 40/***************************************************************************/
 41
 42#ifdef CONFIG_M5249C3
 43
 44static struct resource m5249_smc91x_resources[] = {
 45	{
 46		.start		= 0xe0000300,
 47		.end		= 0xe0000300 + 0x100,
 48		.flags		= IORESOURCE_MEM,
 49	},
 50	{
 51		.start		= MCF_IRQ_GPIO6,
 52		.end		= MCF_IRQ_GPIO6,
 53		.flags		= IORESOURCE_IRQ,
 54	},
 55};
 56
 57static struct platform_device m5249_smc91x = {
 58	.name			= "smc91x",
 59	.id			= 0,
 60	.num_resources		= ARRAY_SIZE(m5249_smc91x_resources),
 61	.resource		= m5249_smc91x_resources,
 62};
 63
 64#endif /* CONFIG_M5249C3 */
 65
 66static struct platform_device *m5249_devices[] __initdata = {
 67#ifdef CONFIG_M5249C3
 68	&m5249_smc91x,
 69#endif
 70};
 71
 72/***************************************************************************/
 73
 74static void __init m5249_qspi_init(void)
 75{
 76#if IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI)
 77	/* QSPI irq setup */
 78	writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL4 | MCFSIM_ICR_PRI0,
 79	       MCFSIM_QSPIICR);
 80	mcf_mapirq2imr(MCF_IRQ_QSPI, MCFINTC_QSPI);
 81#endif /* IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI) */
 82}
 83
 84/***************************************************************************/
 85
 86static void __init m5249_i2c_init(void)
 87{
 88#if IS_ENABLED(CONFIG_I2C_IMX)
 89	u32 r;
 90
 91	/* first I2C controller uses regular irq setup */
 92	writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL5 | MCFSIM_ICR_PRI0,
 93	       MCFSIM_I2CICR);
 94	mcf_mapirq2imr(MCF_IRQ_I2C0, MCFINTC_I2C);
 95
 96	/* second I2C controller is completely different */
 97	r = readl(MCFINTC2_INTPRI_REG(MCF_IRQ_I2C1));
 98	r &= ~MCFINTC2_INTPRI_BITS(0xf, MCF_IRQ_I2C1);
 99	r |= MCFINTC2_INTPRI_BITS(0x5, MCF_IRQ_I2C1);
100	writel(r, MCFINTC2_INTPRI_REG(MCF_IRQ_I2C1));
101#endif /* CONFIG_I2C_IMX */
102}
103
104/***************************************************************************/
105
106#ifdef CONFIG_M5249C3
107
108static void __init m5249_smc91x_init(void)
109{
110	u32  gpio;
111
112	/* Set the GPIO line as interrupt source for smc91x device */
113	gpio = readl(MCFSIM2_GPIOINTENABLE);
114	writel(gpio | 0x40, MCFSIM2_GPIOINTENABLE);
115
116	gpio = readl(MCFINTC2_INTPRI5);
117	writel(gpio | 0x04000000, MCFINTC2_INTPRI5);
118}
119
120#endif /* CONFIG_M5249C3 */
121
122/***************************************************************************/
123
124void __init config_BSP(char *commandp, int size)
125{
126	mach_sched_init = hw_timer_init;
127
128#ifdef CONFIG_M5249C3
129	m5249_smc91x_init();
130#endif
131	m5249_qspi_init();
132	m5249_i2c_init();
133
134	clkdev_add_table(m5249_clk_lookup, ARRAY_SIZE(m5249_clk_lookup));
135}
136
137/***************************************************************************/
138
139static int __init init_BSP(void)
140{
141	platform_add_devices(m5249_devices, ARRAY_SIZE(m5249_devices));
142	return 0;
143}
144
145arch_initcall(init_BSP);
146
147/***************************************************************************/
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/***************************************************************************/
  3
  4/*
  5 *	m5249.c  -- platform support for ColdFire 5249 based boards
  6 *
  7 *	Copyright (C) 2002, Greg Ungerer (gerg@snapgear.com)
  8 */
  9
 10/***************************************************************************/
 11
 
 12#include <linux/kernel.h>
 13#include <linux/param.h>
 14#include <linux/init.h>
 15#include <linux/io.h>
 16#include <linux/platform_device.h>
 17#include <asm/machdep.h>
 18#include <asm/coldfire.h>
 19#include <asm/mcfsim.h>
 20#include <asm/mcfclk.h>
 21
 22/***************************************************************************/
 23
 24DEFINE_CLK(pll, "pll.0", MCF_CLK);
 25DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
 26DEFINE_CLK(mcftmr0, "mcftmr.0", MCF_BUSCLK);
 27DEFINE_CLK(mcftmr1, "mcftmr.1", MCF_BUSCLK);
 28DEFINE_CLK(mcfuart0, "mcfuart.0", MCF_BUSCLK);
 29DEFINE_CLK(mcfuart1, "mcfuart.1", MCF_BUSCLK);
 30DEFINE_CLK(mcfqspi0, "mcfqspi.0", MCF_BUSCLK);
 31DEFINE_CLK(mcfi2c0, "imx1-i2c.0", MCF_BUSCLK);
 32DEFINE_CLK(mcfi2c1, "imx1-i2c.1", MCF_BUSCLK);
 33
 34struct clk *mcf_clks[] = {
 35	&clk_pll,
 36	&clk_sys,
 37	&clk_mcftmr0,
 38	&clk_mcftmr1,
 39	&clk_mcfuart0,
 40	&clk_mcfuart1,
 41	&clk_mcfqspi0,
 42	&clk_mcfi2c0,
 43	&clk_mcfi2c1,
 44	NULL
 45};
 46
 47/***************************************************************************/
 48
 49#ifdef CONFIG_M5249C3
 50
 51static struct resource m5249_smc91x_resources[] = {
 52	{
 53		.start		= 0xe0000300,
 54		.end		= 0xe0000300 + 0x100,
 55		.flags		= IORESOURCE_MEM,
 56	},
 57	{
 58		.start		= MCF_IRQ_GPIO6,
 59		.end		= MCF_IRQ_GPIO6,
 60		.flags		= IORESOURCE_IRQ,
 61	},
 62};
 63
 64static struct platform_device m5249_smc91x = {
 65	.name			= "smc91x",
 66	.id			= 0,
 67	.num_resources		= ARRAY_SIZE(m5249_smc91x_resources),
 68	.resource		= m5249_smc91x_resources,
 69};
 70
 71#endif /* CONFIG_M5249C3 */
 72
 73static struct platform_device *m5249_devices[] __initdata = {
 74#ifdef CONFIG_M5249C3
 75	&m5249_smc91x,
 76#endif
 77};
 78
 79/***************************************************************************/
 80
 81static void __init m5249_qspi_init(void)
 82{
 83#if IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI)
 84	/* QSPI irq setup */
 85	writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL4 | MCFSIM_ICR_PRI0,
 86	       MCFSIM_QSPIICR);
 87	mcf_mapirq2imr(MCF_IRQ_QSPI, MCFINTC_QSPI);
 88#endif /* IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI) */
 89}
 90
 91/***************************************************************************/
 92
 93static void __init m5249_i2c_init(void)
 94{
 95#if IS_ENABLED(CONFIG_I2C_IMX)
 96	u32 r;
 97
 98	/* first I2C controller uses regular irq setup */
 99	writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL5 | MCFSIM_ICR_PRI0,
100	       MCFSIM_I2CICR);
101	mcf_mapirq2imr(MCF_IRQ_I2C0, MCFINTC_I2C);
102
103	/* second I2C controller is completely different */
104	r = readl(MCFINTC2_INTPRI_REG(MCF_IRQ_I2C1));
105	r &= ~MCFINTC2_INTPRI_BITS(0xf, MCF_IRQ_I2C1);
106	r |= MCFINTC2_INTPRI_BITS(0x5, MCF_IRQ_I2C1);
107	writel(r, MCFINTC2_INTPRI_REG(MCF_IRQ_I2C1));
108#endif /* CONFIG_I2C_IMX */
109}
110
111/***************************************************************************/
112
113#ifdef CONFIG_M5249C3
114
115static void __init m5249_smc91x_init(void)
116{
117	u32  gpio;
118
119	/* Set the GPIO line as interrupt source for smc91x device */
120	gpio = readl(MCFSIM2_GPIOINTENABLE);
121	writel(gpio | 0x40, MCFSIM2_GPIOINTENABLE);
122
123	gpio = readl(MCFINTC2_INTPRI5);
124	writel(gpio | 0x04000000, MCFINTC2_INTPRI5);
125}
126
127#endif /* CONFIG_M5249C3 */
128
129/***************************************************************************/
130
131void __init config_BSP(char *commandp, int size)
132{
133	mach_sched_init = hw_timer_init;
134
135#ifdef CONFIG_M5249C3
136	m5249_smc91x_init();
137#endif
138	m5249_qspi_init();
139	m5249_i2c_init();
 
 
140}
141
142/***************************************************************************/
143
144static int __init init_BSP(void)
145{
146	platform_add_devices(m5249_devices, ARRAY_SIZE(m5249_devices));
147	return 0;
148}
149
150arch_initcall(init_BSP);
151
152/***************************************************************************/