source: mainline/kernel/arch/sparc64/src/drivers/pci.c@ f1380b7

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since f1380b7 was a35b458, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 8 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

  • Property mode set to 100644
File size: 5.6 KB
Line 
1/*
2 * Copyright (c) 2006 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup sparc64
30 * @{
31 */
32/**
33 * @file
34 * @brief PCI driver.
35 */
36
37#include <arch/drivers/pci.h>
38#include <genarch/ofw/ofw_tree.h>
39#include <genarch/ofw/upa.h>
40#include <arch/trap/interrupt.h>
41#include <mm/km.h>
42#include <mm/slab.h>
43#include <typedefs.h>
44#include <assert.h>
45#include <log.h>
46#include <str.h>
47#include <arch/asm.h>
48#include <sysinfo/sysinfo.h>
49
50#define SABRE_INTERNAL_REG 0
51#define PSYCHO_INTERNAL_REG 2
52
53#define OBIO_IMR_BASE 0x200
54#define OBIO_IMR(ino) (OBIO_IMR_BASE + ((ino) & INO_MASK))
55
56#define OBIO_CIR_BASE 0x300
57#define OBIO_CIR(ino) (OBIO_CIR_BASE + ((ino) & INO_MASK))
58
59static void obio_enable_interrupt(pci_t *, int);
60static void obio_clear_interrupt(pci_t *, int);
61
62static pci_t *pci_sabre_init(ofw_tree_node_t *);
63static pci_t *pci_psycho_init(ofw_tree_node_t *);
64
65/** PCI operations for Sabre model. */
66static pci_operations_t pci_sabre_ops = {
67 .enable_interrupt = obio_enable_interrupt,
68 .clear_interrupt = obio_clear_interrupt
69};
70/** PCI operations for Psycho model. */
71static pci_operations_t pci_psycho_ops = {
72 .enable_interrupt = obio_enable_interrupt,
73 .clear_interrupt = obio_clear_interrupt
74};
75
76/** Initialize PCI controller (model Sabre).
77 *
78 * @param node OpenFirmware device tree node of the Sabre.
79 *
80 * @return Address of the initialized PCI structure.
81 */
82pci_t *pci_sabre_init(ofw_tree_node_t *node)
83{
84 pci_t *pci;
85 ofw_tree_property_t *prop;
86
87 /*
88 * Get registers.
89 */
90 prop = ofw_tree_getprop(node, "reg");
91 if (!prop || !prop->value)
92 return NULL;
93
94 ofw_upa_reg_t *reg = prop->value;
95 size_t regs = prop->size / sizeof(ofw_upa_reg_t);
96
97 if (regs < SABRE_INTERNAL_REG + 1)
98 return NULL;
99
100 uintptr_t paddr;
101 if (!ofw_upa_apply_ranges(node->parent, &reg[SABRE_INTERNAL_REG],
102 &paddr))
103 return NULL;
104
105 pci = (pci_t *) malloc(sizeof(pci_t), FRAME_ATOMIC);
106 if (!pci)
107 return NULL;
108
109 pci->model = PCI_SABRE;
110 pci->op = &pci_sabre_ops;
111 pci->reg = (uint64_t *) km_map(paddr, reg[SABRE_INTERNAL_REG].size,
112 PAGE_WRITE | PAGE_NOT_CACHEABLE);
113
114 return pci;
115}
116
117
118/** Initialize the Psycho PCI controller.
119 *
120 * @param node OpenFirmware device tree node of the Psycho.
121 *
122 * @return Address of the initialized PCI structure.
123 */
124pci_t *pci_psycho_init(ofw_tree_node_t *node)
125{
126 pci_t *pci;
127 ofw_tree_property_t *prop;
128
129 /*
130 * Get registers.
131 */
132 prop = ofw_tree_getprop(node, "reg");
133 if (!prop || !prop->value)
134 return NULL;
135
136 ofw_upa_reg_t *reg = prop->value;
137 size_t regs = prop->size / sizeof(ofw_upa_reg_t);
138
139 if (regs < PSYCHO_INTERNAL_REG + 1)
140 return NULL;
141
142 uintptr_t paddr;
143 if (!ofw_upa_apply_ranges(node->parent, &reg[PSYCHO_INTERNAL_REG],
144 &paddr))
145 return NULL;
146
147 pci = (pci_t *) malloc(sizeof(pci_t), FRAME_ATOMIC);
148 if (!pci)
149 return NULL;
150
151 pci->model = PCI_PSYCHO;
152 pci->op = &pci_psycho_ops;
153 pci->reg = (uint64_t *) km_map(paddr, reg[PSYCHO_INTERNAL_REG].size,
154 PAGE_WRITE | PAGE_NOT_CACHEABLE);
155
156 return pci;
157}
158
159void obio_enable_interrupt(pci_t *pci, int inr)
160{
161 pci->reg[OBIO_IMR(inr & INO_MASK)] |= IMAP_V_MASK;
162}
163
164void obio_clear_interrupt(pci_t *pci, int inr)
165{
166 pci->reg[OBIO_CIR(inr & INO_MASK)] = 0; /* set IDLE */
167}
168
169/** Initialize PCI controller. */
170pci_t *pci_init(ofw_tree_node_t *node)
171{
172 ofw_tree_property_t *prop;
173
174 /*
175 * First, verify this is a PCI node.
176 */
177 assert(str_cmp(ofw_tree_node_name(node), "pci") == 0);
178
179 /*
180 * Determine PCI controller model.
181 */
182 prop = ofw_tree_getprop(node, "model");
183 if (!prop || !prop->value)
184 return NULL;
185
186 if (str_cmp(prop->value, "SUNW,sabre") == 0) {
187 /*
188 * PCI controller Sabre.
189 * This model is found on UltraSPARC IIi based machines.
190 */
191 return pci_sabre_init(node);
192 } else if (str_cmp(prop->value, "SUNW,psycho") == 0) {
193 /*
194 * PCI controller Psycho.
195 * Used on UltraSPARC II based processors, for instance,
196 * on Ultra 60.
197 */
198 return pci_psycho_init(node);
199 } else {
200 /*
201 * Unsupported model.
202 */
203 log(LF_ARCH, LVL_WARN, "Unsupported PCI controller model (%s).",
204 (char *) prop->value);
205 }
206
207 return NULL;
208}
209
210void pci_enable_interrupt(pci_t *pci, int inr)
211{
212 assert(pci->op && pci->op->enable_interrupt);
213 pci->op->enable_interrupt(pci, inr);
214}
215
216void pci_clear_interrupt(void *pcip, int inr)
217{
218 pci_t *pci = (pci_t *)pcip;
219
220 assert(pci->op && pci->op->clear_interrupt);
221 pci->op->clear_interrupt(pci, inr);
222}
223
224/** @}
225 */
Note: See TracBrowser for help on using the repository browser.