[42742c5a] | 1 | /*
|
---|
| 2 | * Copyright (c) 2009 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 |
|
---|
[ffa2c8ef] | 29 | /** @addtogroup obio
|
---|
[42742c5a] | 30 | * @{
|
---|
[ffa2c8ef] | 31 | */
|
---|
[42742c5a] | 32 |
|
---|
| 33 | /**
|
---|
[ffa2c8ef] | 34 | * @file obio.c
|
---|
| 35 | * @brief OBIO driver.
|
---|
[42742c5a] | 36 | *
|
---|
| 37 | * OBIO is a short for on-board I/O. On UltraSPARC IIi and systems with U2P,
|
---|
| 38 | * there is a piece of the root PCI bus controller address space, which
|
---|
| 39 | * contains interrupt mapping and clear registers for all on-board devices.
|
---|
| 40 | * Although UltraSPARC IIi and U2P are different in general, these registers can
|
---|
| 41 | * be found at the same addresses.
|
---|
| 42 | */
|
---|
| 43 |
|
---|
| 44 | #include <ipc/services.h>
|
---|
[acc7ce4] | 45 | #include <ipc/irc.h>
|
---|
[42742c5a] | 46 | #include <ipc/ns.h>
|
---|
| 47 | #include <sysinfo.h>
|
---|
| 48 | #include <as.h>
|
---|
| 49 | #include <ddi.h>
|
---|
| 50 | #include <align.h>
|
---|
| 51 | #include <bool.h>
|
---|
| 52 | #include <errno.h>
|
---|
| 53 | #include <async.h>
|
---|
| 54 | #include <align.h>
|
---|
| 55 | #include <async.h>
|
---|
| 56 | #include <stdio.h>
|
---|
| 57 | #include <ipc/devmap.h>
|
---|
| 58 |
|
---|
| 59 | #define NAME "obio"
|
---|
| 60 |
|
---|
| 61 | #define OBIO_SIZE 0x1898
|
---|
| 62 |
|
---|
| 63 | #define OBIO_IMR_BASE 0x200
|
---|
| 64 | #define OBIO_IMR(ino) (OBIO_IMR_BASE + ((ino) & INO_MASK))
|
---|
| 65 |
|
---|
| 66 | #define OBIO_CIR_BASE 0x300
|
---|
| 67 | #define OBIO_CIR(ino) (OBIO_CIR_BASE + ((ino) & INO_MASK))
|
---|
| 68 |
|
---|
| 69 | #define INO_MASK 0x1f
|
---|
| 70 |
|
---|
| 71 | static void *base_phys;
|
---|
| 72 | static volatile uint64_t *base_virt;
|
---|
| 73 |
|
---|
| 74 | /** Handle one connection to obio.
|
---|
| 75 | *
|
---|
| 76 | * @param iid Hash of the request that opened the connection.
|
---|
| 77 | * @param icall Call data of the request that opened the connection.
|
---|
| 78 | */
|
---|
| 79 | static void obio_connection(ipc_callid_t iid, ipc_call_t *icall)
|
---|
| 80 | {
|
---|
| 81 | ipc_callid_t callid;
|
---|
| 82 | ipc_call_t call;
|
---|
| 83 |
|
---|
| 84 | /*
|
---|
| 85 | * Answer the first IPC_M_CONNECT_ME_TO call.
|
---|
| 86 | */
|
---|
[ffa2c8ef] | 87 | async_answer_0(iid, EOK);
|
---|
[42742c5a] | 88 |
|
---|
| 89 | while (1) {
|
---|
| 90 | int inr;
|
---|
| 91 |
|
---|
| 92 | callid = async_get_call(&call);
|
---|
[228e490] | 93 | switch (IPC_GET_IMETHOD(call)) {
|
---|
[acc7ce4] | 94 | case IRC_ENABLE_INTERRUPT:
|
---|
| 95 | /* Noop */
|
---|
[ffa2c8ef] | 96 | async_answer_0(callid, EOK);
|
---|
[acc7ce4] | 97 | break;
|
---|
| 98 | case IRC_CLEAR_INTERRUPT:
|
---|
[42742c5a] | 99 | inr = IPC_GET_ARG1(call);
|
---|
[f3f7009] | 100 | base_virt[OBIO_CIR(inr & INO_MASK)] = 0;
|
---|
[ffa2c8ef] | 101 | async_answer_0(callid, EOK);
|
---|
[42742c5a] | 102 | break;
|
---|
| 103 | default:
|
---|
[ffa2c8ef] | 104 | async_answer_0(callid, EINVAL);
|
---|
[42742c5a] | 105 | break;
|
---|
| 106 | }
|
---|
| 107 | }
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | /** Initialize the OBIO driver.
|
---|
| 111 | *
|
---|
| 112 | * So far, the driver heavily depends on information provided by the kernel via
|
---|
| 113 | * sysinfo. In the future, there should be a standalone OBIO driver.
|
---|
| 114 | */
|
---|
| 115 | static bool obio_init(void)
|
---|
| 116 | {
|
---|
[d9fae235] | 117 | sysarg_t paddr;
|
---|
[42742c5a] | 118 |
|
---|
[d9fae235] | 119 | if (sysinfo_get_value("obio.base.physical", &paddr) != EOK) {
|
---|
[42742c5a] | 120 | printf(NAME ": no OBIO registers found\n");
|
---|
| 121 | return false;
|
---|
| 122 | }
|
---|
[d9fae235] | 123 |
|
---|
| 124 | base_phys = (void *) paddr;
|
---|
[42742c5a] | 125 | base_virt = as_get_mappable_page(OBIO_SIZE);
|
---|
| 126 |
|
---|
| 127 | int flags = AS_AREA_READ | AS_AREA_WRITE;
|
---|
| 128 | int retval = physmem_map(base_phys, (void *) base_virt,
|
---|
| 129 | ALIGN_UP(OBIO_SIZE, PAGE_SIZE) >> PAGE_WIDTH, flags);
|
---|
| 130 |
|
---|
| 131 | if (retval < 0) {
|
---|
| 132 | printf(NAME ": Error mapping OBIO registers\n");
|
---|
| 133 | return false;
|
---|
| 134 | }
|
---|
| 135 |
|
---|
| 136 | printf(NAME ": OBIO registers with base at %p\n", base_phys);
|
---|
[d9fae235] | 137 |
|
---|
[42742c5a] | 138 | async_set_client_connection(obio_connection);
|
---|
[007e6efa] | 139 | service_register(SERVICE_OBIO);
|
---|
[42742c5a] | 140 |
|
---|
| 141 | return true;
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | int main(int argc, char **argv)
|
---|
| 145 | {
|
---|
| 146 | printf(NAME ": HelenOS OBIO driver\n");
|
---|
| 147 |
|
---|
| 148 | if (!obio_init())
|
---|
| 149 | return -1;
|
---|
| 150 |
|
---|
| 151 | printf(NAME ": Accepting connections\n");
|
---|
| 152 | async_manager();
|
---|
| 153 |
|
---|
| 154 | /* Never reached */
|
---|
| 155 | return 0;
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 | /**
|
---|
| 159 | * @}
|
---|
| 160 | */
|
---|