Rev 2131 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1999 | decky | 1 | /* |
| 2071 | jermar | 2 | * Copyright (c) 2006 Martin Decky |
| 1999 | decky | 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 rd |
||
| 30 | * @{ |
||
| 31 | */ |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @file rd.c |
||
| 35 | * @brief Initial RAM disk for HelenOS. |
||
| 36 | */ |
||
| 37 | |||
| 38 | #include <ipc/ipc.h> |
||
| 39 | #include <ipc/services.h> |
||
| 40 | #include <ipc/ns.h> |
||
| 2005 | decky | 41 | #include <sysinfo.h> |
| 42 | #include <as.h> |
||
| 43 | #include <ddi.h> |
||
| 44 | #include <align.h> |
||
| 45 | #include <bool.h> |
||
| 1999 | decky | 46 | #include <errno.h> |
| 47 | #include <async.h> |
||
| 48 | |||
| 49 | |||
| 50 | static void rd_connection(ipc_callid_t iid, ipc_call_t *icall) |
||
| 51 | { |
||
| 52 | ipc_callid_t callid; |
||
| 53 | ipc_call_t call; |
||
| 54 | int retval; |
||
| 55 | |||
| 56 | ipc_answer_fast(iid, 0, 0, 0); |
||
| 57 | |||
| 58 | while (1) { |
||
| 59 | callid = async_get_call(&call); |
||
| 60 | switch (IPC_GET_METHOD(call)) { |
||
| 61 | case IPC_M_PHONE_HUNGUP: |
||
| 62 | ipc_answer_fast(callid, 0,0,0); |
||
| 63 | return; |
||
| 64 | default: |
||
| 65 | retval = EINVAL; |
||
| 66 | } |
||
| 67 | ipc_answer_fast(callid, retval, 0, 0); |
||
| 68 | } |
||
| 69 | } |
||
| 70 | |||
| 71 | |||
| 2005 | decky | 72 | static bool rd_init(void) |
| 1999 | decky | 73 | { |
| 2005 | decky | 74 | size_t rd_size = sysinfo_value("rd.size"); |
| 75 | void * rd_ph_addr = (void *) sysinfo_value("rd.address.physical"); |
||
| 1999 | decky | 76 | |
| 2005 | decky | 77 | if (rd_size == 0) |
| 78 | return false; |
||
| 1999 | decky | 79 | |
| 2292 | hudecek | 80 | void * rd_addr = as_get_mappable_page(rd_size); |
| 2005 | decky | 81 | |
| 2012 | jermar | 82 | physmem_map(rd_ph_addr, rd_addr, ALIGN_UP(rd_size, PAGE_SIZE) >> PAGE_WIDTH, AS_AREA_READ | AS_AREA_WRITE); |
| 2005 | decky | 83 | |
| 84 | return true; |
||
| 85 | } |
||
| 1999 | decky | 86 | |
| 87 | |||
| 2005 | decky | 88 | int main(int argc, char **argv) |
| 89 | { |
||
| 90 | if (rd_init()) { |
||
| 91 | ipcarg_t phonead; |
||
| 92 | |||
| 93 | async_set_client_connection(rd_connection); |
||
| 94 | |||
| 95 | /* Register service at nameserver */ |
||
| 96 | if (ipc_connect_to_me(PHONE_NS, SERVICE_RD, 0, &phonead) != 0) |
||
| 97 | return -1; |
||
| 98 | |||
| 99 | async_manager(); |
||
| 100 | |||
| 101 | /* Never reached */ |
||
| 102 | return 0; |
||
| 103 | } |
||
| 104 | |||
| 105 | return -1; |
||
| 1999 | decky | 106 | } |
| 107 | |||
| 108 | /** |
||
| 109 | * @} |
||
| 110 | */ |