hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// SPDX-License-Identifier: GPL-2.0-only
/* Analogue & Micro Adder MPC875 board support
 *
 * Author: Scott Wood <scottwood@freescale.com>
 *
 * Copyright (c) 2007 Freescale Semiconductor, Inc.
 */
 
#include <linux/init.h>
#include <linux/fs_enet_pd.h>
#include <linux/of_platform.h>
 
#include <asm/time.h>
#include <asm/machdep.h>
#include <asm/cpm1.h>
#include <asm/fs_pd.h>
#include <asm/udbg.h>
#include <asm/prom.h>
 
#include "mpc8xx.h"
 
struct cpm_pin {
   int port, pin, flags;
};
 
static __initdata struct cpm_pin adder875_pins[] = {
   /* SMC1 */
   {CPM_PORTB, 24, CPM_PIN_INPUT}, /* RX */
   {CPM_PORTB, 25, CPM_PIN_INPUT | CPM_PIN_SECONDARY}, /* TX */
 
   /* MII1 */
   {CPM_PORTA, 0, CPM_PIN_INPUT},
   {CPM_PORTA, 1, CPM_PIN_INPUT},
   {CPM_PORTA, 2, CPM_PIN_INPUT},
   {CPM_PORTA, 3, CPM_PIN_INPUT},
   {CPM_PORTA, 4, CPM_PIN_OUTPUT},
   {CPM_PORTA, 10, CPM_PIN_OUTPUT},
   {CPM_PORTA, 11, CPM_PIN_OUTPUT},
   {CPM_PORTB, 19, CPM_PIN_INPUT},
   {CPM_PORTB, 31, CPM_PIN_INPUT},
   {CPM_PORTC, 12, CPM_PIN_INPUT},
   {CPM_PORTC, 13, CPM_PIN_INPUT},
   {CPM_PORTE, 30, CPM_PIN_OUTPUT},
   {CPM_PORTE, 31, CPM_PIN_OUTPUT},
 
   /* MII2 */
   {CPM_PORTE, 14, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
   {CPM_PORTE, 15, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
   {CPM_PORTE, 16, CPM_PIN_OUTPUT},
   {CPM_PORTE, 17, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
   {CPM_PORTE, 18, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
   {CPM_PORTE, 19, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
   {CPM_PORTE, 20, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
   {CPM_PORTE, 21, CPM_PIN_OUTPUT},
   {CPM_PORTE, 22, CPM_PIN_OUTPUT},
   {CPM_PORTE, 23, CPM_PIN_OUTPUT},
   {CPM_PORTE, 24, CPM_PIN_OUTPUT},
   {CPM_PORTE, 25, CPM_PIN_OUTPUT},
   {CPM_PORTE, 26, CPM_PIN_OUTPUT},
   {CPM_PORTE, 27, CPM_PIN_OUTPUT},
   {CPM_PORTE, 28, CPM_PIN_OUTPUT},
   {CPM_PORTE, 29, CPM_PIN_OUTPUT},
};
 
static void __init init_ioports(void)
{
   int i;
 
   for (i = 0; i < ARRAY_SIZE(adder875_pins); i++) {
       const struct cpm_pin *pin = &adder875_pins[i];
       cpm1_set_pin(pin->port, pin->pin, pin->flags);
   }
 
   cpm1_clk_setup(CPM_CLK_SMC1, CPM_BRG1, CPM_CLK_RTX);
 
   /* Set FEC1 and FEC2 to MII mode */
   clrbits32(&mpc8xx_immr->im_cpm.cp_cptr, 0x00000180);
}
 
static void __init adder875_setup(void)
{
   cpm_reset();
   init_ioports();
}
 
static int __init adder875_probe(void)
{
   return of_machine_is_compatible("analogue-and-micro,adder875");
}
 
static const struct of_device_id of_bus_ids[] __initconst = {
   { .compatible = "simple-bus", },
   {},
};
 
static int __init declare_of_platform_devices(void)
{
   of_platform_bus_probe(NULL, of_bus_ids, NULL);
   return 0;
}
machine_device_initcall(adder875, declare_of_platform_devices);
 
define_machine(adder875) {
   .name = "Adder MPC875",
   .probe = adder875_probe,
   .setup_arch = adder875_setup,
   .init_IRQ = mpc8xx_pics_init,
   .get_irq = mpc8xx_get_irq,
   .restart = mpc8xx_restart,
   .calibrate_decr = generic_calibrate_decr,
   .progress = udbg_progress,
};