source: mainline/uspace/lib/drv/generic/remote_battery_dev.c@ ad896eb

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ad896eb was a46e56b, checked in by Jakub Jermar <jakub@…>, 8 years ago

Prefer handle over ID in naming handle variables

  • Property mode set to 100644
File size: 4.7 KB
RevLine 
[69a13a4]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/** @addtogroup libdrv
30 * @{
31 */
32/** @file
33 */
34
35#include <async.h>
36#include <errno.h>
37#include <ops/battery_dev.h>
[26c03dbd]38#include <battery_iface.h>
[69a13a4]39#include <ddf/driver.h>
[9be30cdf]40#include <macros.h>
[69a13a4]41
[26c03dbd]42/** Read the current battery status from the device
43 *
44 * @param sess Session of the device
45 * @param status Current status of the battery
46 *
[cde999a]47 * @return EOK on success or an error code
[26c03dbd]48 */
[b7fd2a0]49errno_t
[26c03dbd]50battery_status_get(async_sess_t *sess, battery_status_t *batt_status)
51{
52 sysarg_t status;
53
54 async_exch_t *exch = async_exchange_begin(sess);
55
[b7fd2a0]56 errno_t const rc = async_req_1_1(exch, DEV_IFACE_ID(BATTERY_DEV_IFACE),
[26c03dbd]57 BATTERY_STATUS_GET, &status);
58
59 async_exchange_end(exch);
60
61 if (rc == EOK)
62 *batt_status = (battery_status_t) status;
63
64 return rc;
65}
66
67/** Read the current battery charge level from the device
68 *
69 * @param sess Session of the device
70 * @param level Battery charge level (0 - 100)
71 *
[cde999a]72 * @return EOK on success or an error code
[26c03dbd]73 */
[b7fd2a0]74errno_t
[26c03dbd]75battery_charge_level_get(async_sess_t *sess, int *level)
76{
77 sysarg_t charge_level;
78
79 async_exch_t *exch = async_exchange_begin(sess);
80
[b7fd2a0]81 errno_t const rc = async_req_1_1(exch, DEV_IFACE_ID(BATTERY_DEV_IFACE),
[26c03dbd]82 BATTERY_CHARGE_LEVEL_GET, &charge_level);
83
84 async_exchange_end(exch);
85
86 if (rc == EOK)
87 *level = (int) charge_level;
88
89 return rc;
90}
91
[3be9d10]92static void remote_battery_status_get(ddf_fun_t *, void *, cap_call_handle_t,
[69a13a4]93 ipc_call_t *);
[3be9d10]94static void remote_battery_charge_level_get(ddf_fun_t *, void *, cap_call_handle_t,
[69a13a4]95 ipc_call_t *);
96
97/** Remote battery interface operations */
[9be30cdf]98static const remote_iface_func_ptr_t remote_battery_dev_iface_ops[] = {
[c1ee46f]99 [BATTERY_STATUS_GET] = remote_battery_status_get,
100 [BATTERY_CHARGE_LEVEL_GET] = remote_battery_charge_level_get,
[69a13a4]101};
102
103/** Remote battery interface structure
104 *
105 * Interface for processing request from remote clients
106 * addressed by the battery interface.
107 *
108 */
[7f80313]109const remote_iface_t remote_battery_dev_iface = {
[9be30cdf]110 .method_count = ARRAY_SIZE(remote_battery_dev_iface_ops),
[69a13a4]111 .methods = remote_battery_dev_iface_ops,
112};
113
114/** Process the status_get() request from the remote client
115 *
116 * @param fun The function from which the battery status is read
117 * @param ops The local ops structure
118 */
119static void
[a46e56b]120remote_battery_status_get(ddf_fun_t *fun, void *ops, cap_call_handle_t chandle,
[69a13a4]121 ipc_call_t *call)
122{
123 const battery_dev_ops_t *bops = (battery_dev_ops_t *) ops;
124
125 if (bops->battery_status_get == NULL) {
[a46e56b]126 async_answer_0(chandle, ENOTSUP);
[69a13a4]127 return;
128 }
129
130 battery_status_t batt_status;
[b7fd2a0]131 const errno_t rc = bops->battery_status_get(fun, &batt_status);
[69a13a4]132
133 if (rc != EOK)
[a46e56b]134 async_answer_0(chandle, rc);
[69a13a4]135 else
[a46e56b]136 async_answer_1(chandle, rc, batt_status);
[69a13a4]137}
138
139/** Process the battery_charge_level_get() request from the remote client
140 *
141 * @param fun The function from which the battery charge level is read
142 * @param ops The local ops structure
143 *
144 */
145static void
[a46e56b]146remote_battery_charge_level_get(ddf_fun_t *fun, void *ops, cap_call_handle_t chandle,
[69a13a4]147 ipc_call_t *call)
148{
149 const battery_dev_ops_t *bops = (battery_dev_ops_t *) ops;
150
151 if (bops->battery_charge_level_get == NULL) {
[a46e56b]152 async_answer_0(chandle, ENOTSUP);
[69a13a4]153 return;
154 }
155
156 int battery_level;
[b7fd2a0]157 const errno_t rc = bops->battery_charge_level_get(fun, &battery_level);
[69a13a4]158
159 if (rc != EOK)
[a46e56b]160 async_answer_0(chandle, rc);
[69a13a4]161 else
[a46e56b]162 async_answer_1(chandle, rc, battery_level);
[69a13a4]163}
164
Note: See TracBrowser for help on using the repository browser.