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
|
|
|
|
2023-03-03 11:07:28 +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
|
|
|
Connection(Genode::Env &env, unsigned long gpio_pin)
|
|
|
|
:
|
2023-03-03 11:07:28 +00:00
|
|
|
Genode::Connection<Session>(env, Label(), Ram_quota { 8*1024 },
|
|
|
|
Args("gpio=", gpio_pin)),
|
2016-05-10 15:24:51 +00:00
|
|
|
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_ */
|