source: mainline/kernel/genarch/src/ofw/pci.c@ 8f80c77

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 8f80c77 was 19f857a, checked in by Jiri Svoboda <jiri@…>, 15 years ago

Rename string.h to str.h to avoid header conflict with standard C string.h.

  • Property mode set to 100644
File size: 4.0 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 ofw
30 * @{
31 */
32/**
33 * @file
34 * @brief PCI 'reg' and 'ranges' properties handling.
35 *
36 */
37
38#include <genarch/ofw/ofw_tree.h>
39#include <genarch/ofw/pci.h>
40#include <arch/drivers/pci.h>
41#include <arch/trap/interrupt.h>
42#include <arch/memstr.h>
43#include <str.h>
44#include <panic.h>
45#include <macros.h>
46
47#define PCI_SPACE_MASK 0x03000000
48#define PCI_ABS_MASK 0x80000000
49#define PCI_REG_MASK 0x000000ff
50
51#define PCI_IGN 0x1f
52
53bool
54ofw_pci_apply_ranges(ofw_tree_node_t *node, ofw_pci_reg_t *reg, uintptr_t *pa)
55{
56 ofw_tree_property_t *prop;
57 ofw_pci_range_t *range;
58 size_t ranges;
59
60 prop = ofw_tree_getprop(node, "ranges");
61 if (!prop) {
62 if (str_cmp(ofw_tree_node_name(node->parent), "pci") == 0)
63 return ofw_pci_apply_ranges(node->parent, reg, pa);
64 return false;
65 }
66
67 ranges = prop->size / sizeof(ofw_pci_range_t);
68 range = prop->value;
69
70 unsigned int i;
71
72 for (i = 0; i < ranges; i++) {
73 if ((reg->space & PCI_SPACE_MASK) !=
74 (range[i].space & PCI_SPACE_MASK))
75 continue;
76 if (overlaps(reg->addr, reg->size, range[i].child_base,
77 range[i].size)) {
78 *pa = range[i].parent_base +
79 (reg->addr - range[i].child_base);
80 return true;
81 }
82 }
83
84 return false;
85}
86
87bool
88ofw_pci_reg_absolutize(ofw_tree_node_t *node, ofw_pci_reg_t *reg,
89 ofw_pci_reg_t *out)
90{
91 if (reg->space & PCI_ABS_MASK) {
92 /* already absolute */
93 out->space = reg->space;
94 out->addr = reg->addr;
95 out->size = reg->size;
96 return true;
97 }
98
99 ofw_tree_property_t *prop;
100 ofw_pci_reg_t *assigned_address;
101 size_t assigned_addresses;
102
103 prop = ofw_tree_getprop(node, "assigned-addresses");
104 if (!prop)
105 panic("Cannot find 'assigned-addresses' property.");
106
107 assigned_addresses = prop->size / sizeof(ofw_pci_reg_t);
108 assigned_address = prop->value;
109
110 unsigned int i;
111
112 for (i = 0; i < assigned_addresses; i++) {
113 if ((assigned_address[i].space & PCI_REG_MASK) ==
114 (reg->space & PCI_REG_MASK)) {
115 out->space = assigned_address[i].space;
116 out->addr = reg->addr + assigned_address[i].addr;
117 out->size = reg->size;
118 return true;
119 }
120 }
121
122 return false;
123}
124
125/** Map PCI interrupt.
126 *
127 * So far, we only know how to map interrupts of non-PCI devices connected
128 * to a PCI bridge.
129 */
130bool
131ofw_pci_map_interrupt(ofw_tree_node_t *node, ofw_pci_reg_t *reg, int ino,
132 int *inr, cir_t *cir, void **cir_arg)
133{
134 pci_t *pci = node->device;
135 if (!pci) {
136 pci = pci_init(node);
137 if (!pci)
138 return false;
139 node->device = pci;
140 }
141
142 pci_enable_interrupt(pci, ino);
143
144 *inr = (PCI_IGN << IGN_SHIFT) | ino;
145 *cir = pci_clear_interrupt;
146 *cir_arg = pci;
147
148 return true;
149}
150
151/** @}
152 */
Note: See TracBrowser for help on using the repository browser.