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
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Maxtor Shared Storage II Board Setup
 *
 * Maintainer: Sylver Bruneau <sylver.bruneau@googlemail.com>
 */
 
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/pci.h>
#include <linux/irq.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/pci.h>
#include "orion5x.h"
#include "bridge-regs.h"
#include "common.h"
 
/*****************************************************************************
 * Maxtor Shared Storage II Info
 ****************************************************************************/
 
/****************************************************************************
 * PCI setup
 ****************************************************************************/
static int __init mss2_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
{
   int irq;
 
   /*
    * Check for devices with hard-wired IRQs.
    */
   irq = orion5x_pci_map_irq(dev, slot, pin);
   if (irq != -1)
       return irq;
 
   return -1;
}
 
static struct hw_pci mss2_pci __initdata = {
   .nr_controllers = 2,
   .setup        = orion5x_pci_sys_setup,
   .scan        = orion5x_pci_sys_scan_bus,
   .map_irq    = mss2_pci_map_irq,
};
 
static int __init mss2_pci_init(void)
{
   if (machine_is_mss2())
       pci_common_init(&mss2_pci);
 
   return 0;
}
subsys_initcall(mss2_pci_init);
 
/*****************************************************************************
 * MSS2 power off method
 ****************************************************************************/
/*
 * On the Maxtor Shared Storage II, the shutdown process is the following :
 * - Userland modifies U-boot env to tell U-boot to go idle at next boot
 * - The board reboots
 * - U-boot starts and go into an idle mode until the user press "power"
 */
static void mss2_power_off(void)
{
   u32 reg;
 
   /*
    * Enable and issue soft reset
    */
   reg = readl(RSTOUTn_MASK);
   reg |= 1 << 2;
   writel(reg, RSTOUTn_MASK);
 
   reg = readl(CPU_SOFT_RESET);
   reg |= 1;
   writel(reg, CPU_SOFT_RESET);
}
 
void __init mss2_init(void)
{
   /* register mss2 specific power-off method */
   pm_power_off = mss2_power_off;
}