| 1 | /*
|
|---|
| 2 | * Copyright (c) 2012 Maurizio Lombardi
|
|---|
| 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 | /**
|
|---|
| 30 | * @defgroup CMOS RTC driver.
|
|---|
| 31 | * @brief HelenOS RTC driver.
|
|---|
| 32 | * @{
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | /** @file
|
|---|
| 36 | */
|
|---|
| 37 |
|
|---|
| 38 | #include <errno.h>
|
|---|
| 39 | #include <ddi.h>
|
|---|
| 40 | #include <stdio.h>
|
|---|
| 41 | #include <ddf/driver.h>
|
|---|
| 42 | #include <ddf/log.h>
|
|---|
| 43 | #include <ops/clock.h>
|
|---|
| 44 |
|
|---|
| 45 | #define NAME "RTC"
|
|---|
| 46 |
|
|---|
| 47 | static int
|
|---|
| 48 | rtc_time_get(ddf_fun_t *fun, time_t *t);
|
|---|
| 49 |
|
|---|
| 50 | static int
|
|---|
| 51 | rtc_time_set(ddf_fun_t *fun, time_t t);
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 | static ddf_dev_ops_t rtc_dev_ops;
|
|---|
| 55 |
|
|---|
| 56 | static driver_t rtc_driver = {
|
|---|
| 57 | .name = NAME,
|
|---|
| 58 | .driver_ops = NULL,
|
|---|
| 59 | };
|
|---|
| 60 |
|
|---|
| 61 | static clock_dev_ops_t rtc_clock_dev_ops = {
|
|---|
| 62 | .time_get = rtc_time_get,
|
|---|
| 63 | .time_set = rtc_time_set,
|
|---|
| 64 | };
|
|---|
| 65 |
|
|---|
| 66 | typedef struct rtc {
|
|---|
| 67 | /** DDF device node */
|
|---|
| 68 | ddf_dev_t *dev;
|
|---|
| 69 | /** DDF function node */
|
|---|
| 70 | ddf_fun_t *fun;
|
|---|
| 71 | } rtc_t;
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 | /** Initialize the RTC driver */
|
|---|
| 75 | static void
|
|---|
| 76 | rtc_init(void)
|
|---|
| 77 | {
|
|---|
| 78 | ddf_log_init(NAME, LVL_ERROR);
|
|---|
| 79 |
|
|---|
| 80 | rtc_dev_ops.open = NULL;
|
|---|
| 81 | rtc_dev_ops.close = NULL;
|
|---|
| 82 |
|
|---|
| 83 | rtc_dev_ops.interfaces[CLOCK_DEV_IFACE] = &rtc_clock_dev_ops;
|
|---|
| 84 | rtc_dev_ops.default_handler = NULL;
|
|---|
| 85 | }
|
|---|
| 86 |
|
|---|
| 87 | static int
|
|---|
| 88 | rtc_time_get(ddf_fun_t *fun, time_t *t)
|
|---|
| 89 | {
|
|---|
| 90 | return EOK;
|
|---|
| 91 | }
|
|---|
| 92 |
|
|---|
| 93 | static int
|
|---|
| 94 | rtc_time_set(ddf_fun_t *fun, time_t t)
|
|---|
| 95 | {
|
|---|
| 96 | return EOK;
|
|---|
| 97 | }
|
|---|
| 98 |
|
|---|
| 99 | int
|
|---|
| 100 | main(int argc, char **argv)
|
|---|
| 101 | {
|
|---|
| 102 | printf(NAME ": HelenOS RTC driver\n");
|
|---|
| 103 | rtc_init();
|
|---|
| 104 | return ddf_driver_main(&rtc_driver);
|
|---|
| 105 | }
|
|---|
| 106 |
|
|---|
| 107 | /**
|
|---|
| 108 | * @}
|
|---|
| 109 | */
|
|---|