2012-07-16 13:13:35 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to Gpio session
|
|
|
|
* \author Ivan Loskutov <ivan.loskutov@ksyslabs.org>
|
2013-05-06 12:33:30 +00:00
|
|
|
* \author Stefan Kalkowski <stefan.kalkowski@genode-labs.com>
|
2012-07-16 13:13:35 +00:00
|
|
|
* \date 2012-06-23
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Ksys Labs LLC
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2012-2017 Genode Labs GmbH
|
2012-07-16 13:13:35 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2012-07-16 13:13:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__GPIO_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__GPIO_SESSION__CONNECTION_H_
|
|
|
|
|
|
|
|
#include <gpio_session/client.h>
|
|
|
|
#include <base/connection.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Gpio { struct Connection; }
|
2012-07-16 13:13:35 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
struct Gpio::Connection : Genode::Connection<Session>, Session_client
|
|
|
|
{
|
2016-05-10 15:24:51 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
Connection(Genode::Env &env, unsigned long gpio_pin)
|
|
|
|
:
|
|
|
|
Genode::Connection<Session>(env, session(env.parent(),
|
2017-05-07 20:03:25 +00:00
|
|
|
"ram_quota=8K, cap_quota=%ld, gpio=%ld",
|
|
|
|
CAP_QUOTA, gpio_pin)),
|
2016-05-10 15:24:51 +00:00
|
|
|
Session_client(cap())
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
|
|
* argument instead
|
|
|
|
*/
|
2017-01-09 14:18:49 +00:00
|
|
|
Connection(unsigned long gpio_pin) __attribute__((deprecated))
|
2016-05-10 15:24:51 +00:00
|
|
|
:
|
|
|
|
Genode::Connection<Session>(session("ram_quota=8K, gpio=%zd", gpio_pin)),
|
|
|
|
Session_client(cap())
|
|
|
|
{ }
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2012-07-16 13:13:35 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__GPIO_SESSION__CONNECTION_H_ */
|