2009-07-03 06:48:23 +08:00
|
|
|
/*
|
2021-03-08 11:25:38 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2013-06-24 17:06:09 +08:00
|
|
|
*
|
2018-09-14 22:37:43 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2007-01-21 Bernard the first version
|
2010-05-04 07:17:25 +08:00
|
|
|
* 2010-05-04 Bernard add rt_device_init implementation
|
2013-06-24 17:06:09 +08:00
|
|
|
* 2012-10-20 Bernard add device check in register function,
|
2012-10-20 06:44:34 +08:00
|
|
|
* provided by Rob <rdent@iinet.net.au>
|
2012-12-25 09:44:23 +08:00
|
|
|
* 2012-12-25 Bernard return RT_EOK if the device interface not exist.
|
2013-07-09 11:54:50 +08:00
|
|
|
* 2013-07-09 Grissiom add ref_count support
|
2016-04-02 14:42:38 +08:00
|
|
|
* 2016-04-02 Bernard fix the open_flag initialization issue.
|
2021-03-19 03:01:07 +08:00
|
|
|
* 2021-03-19 Meco Man remove rt_device_init_all()
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
2021-11-24 22:14:46 +08:00
|
|
|
#ifdef RT_USING_POSIX_DEVIO
|
2018-06-26 11:19:38 +08:00
|
|
|
#include <rtdevice.h> /* for wqueue_init */
|
2021-11-24 22:14:46 +08:00
|
|
|
#endif /* RT_USING_POSIX_DEVIO */
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_DEVICE
|
|
|
|
|
2018-06-10 17:59:17 +08:00
|
|
|
#ifdef RT_USING_DEVICE_OPS
|
|
|
|
#define device_init (dev->ops->init)
|
|
|
|
#define device_open (dev->ops->open)
|
|
|
|
#define device_close (dev->ops->close)
|
|
|
|
#define device_read (dev->ops->read)
|
|
|
|
#define device_write (dev->ops->write)
|
|
|
|
#define device_control (dev->ops->control)
|
|
|
|
#else
|
|
|
|
#define device_init (dev->init)
|
|
|
|
#define device_open (dev->open)
|
|
|
|
#define device_close (dev->close)
|
|
|
|
#define device_read (dev->read)
|
|
|
|
#define device_write (dev->write)
|
|
|
|
#define device_control (dev->control)
|
2021-06-09 19:50:03 +08:00
|
|
|
#endif /* RT_USING_DEVICE_OPS */
|
2018-06-10 17:59:17 +08:00
|
|
|
|
2009-07-03 06:48:23 +08:00
|
|
|
/**
|
2021-09-11 16:40:56 +08:00
|
|
|
* @brief This function registers a device driver with a specified name.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param name is the device driver's name.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param flags is the capabilities flag of device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* @return the error code, RT_EOK on initialization successfully.
|
|
|
|
*/
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_err_t rt_device_register(rt_device_t dev,
|
|
|
|
const char *name,
|
|
|
|
rt_uint16_t flags)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
if (dev == RT_NULL)
|
|
|
|
return -RT_ERROR;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
if (rt_device_find(name) != RT_NULL)
|
|
|
|
return -RT_ERROR;
|
2012-10-20 06:44:34 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_object_init(&(dev->parent), RT_Object_Class_Device, name);
|
|
|
|
dev->flag = flags;
|
2013-07-09 11:54:50 +08:00
|
|
|
dev->ref_count = 0;
|
2016-04-02 14:42:38 +08:00
|
|
|
dev->open_flag = 0;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2021-11-24 22:14:46 +08:00
|
|
|
#ifdef RT_USING_POSIX_DEVIO
|
2017-10-15 22:31:53 +08:00
|
|
|
dev->fops = RT_NULL;
|
2018-06-26 11:57:20 +08:00
|
|
|
rt_wqueue_init(&(dev->wait_queue));
|
2021-11-24 22:14:46 +08:00
|
|
|
#endif /* RT_USING_POSIX_DEVIO */
|
2017-10-15 22:31:53 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
return RT_EOK;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_register);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function removes a previously registered device driver.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* @return the error code, RT_EOK on successfully.
|
|
|
|
*/
|
|
|
|
rt_err_t rt_device_unregister(rt_device_t dev)
|
|
|
|
{
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
|
|
|
RT_ASSERT(rt_object_is_systemobject(&dev->parent));
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_object_detach(&(dev->parent));
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
return RT_EOK;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_unregister);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function finds a device driver by specified name.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param name is the device driver's name.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* @return the registered device driver on successful, or RT_NULL on failure.
|
|
|
|
*/
|
2011-09-21 11:56:42 +08:00
|
|
|
rt_device_t rt_device_find(const char *name)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2020-12-31 09:47:55 +08:00
|
|
|
return (rt_device_t)rt_object_find(name, RT_Object_Class_Device);
|
2010-05-04 07:17:25 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_find);
|
2010-05-04 07:17:25 +08:00
|
|
|
|
2017-12-24 00:00:18 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function creates a device object with user data size.
|
2017-12-24 00:00:18 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param type is the type of the device object.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param attach_size is the size of user data.
|
2017-12-24 00:00:18 +08:00
|
|
|
*
|
|
|
|
* @return the allocated device object, or RT_NULL when failed.
|
|
|
|
*/
|
|
|
|
rt_device_t rt_device_create(int type, int attach_size)
|
|
|
|
{
|
2017-12-31 14:45:16 +08:00
|
|
|
int size;
|
|
|
|
rt_device_t device;
|
2017-12-24 00:00:18 +08:00
|
|
|
|
2017-12-31 14:45:16 +08:00
|
|
|
size = RT_ALIGN(sizeof(struct rt_device), RT_ALIGN_SIZE);
|
2018-06-10 17:59:17 +08:00
|
|
|
attach_size = RT_ALIGN(attach_size, RT_ALIGN_SIZE);
|
2019-12-16 13:59:46 +08:00
|
|
|
/* use the total size */
|
2017-12-31 14:45:16 +08:00
|
|
|
size += attach_size;
|
2017-12-24 00:00:18 +08:00
|
|
|
|
2017-12-31 14:45:16 +08:00
|
|
|
device = (rt_device_t)rt_malloc(size);
|
|
|
|
if (device)
|
|
|
|
{
|
|
|
|
rt_memset(device, 0x0, sizeof(struct rt_device));
|
|
|
|
device->type = (enum rt_device_class_type)type;
|
|
|
|
}
|
2017-12-24 00:00:18 +08:00
|
|
|
|
2017-12-31 14:45:16 +08:00
|
|
|
return device;
|
2017-12-24 00:00:18 +08:00
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_device_create);
|
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function destroy the specific device object.
|
2017-12-24 00:00:18 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is a specific device object.
|
2017-12-24 00:00:18 +08:00
|
|
|
*/
|
2018-07-07 13:56:21 +08:00
|
|
|
void rt_device_destroy(rt_device_t dev)
|
2017-12-24 00:00:18 +08:00
|
|
|
{
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
|
|
|
RT_ASSERT(rt_object_is_systemobject(&dev->parent) == RT_FALSE);
|
|
|
|
|
|
|
|
rt_object_detach(&(dev->parent));
|
2017-12-24 00:00:18 +08:00
|
|
|
|
2017-12-31 14:45:16 +08:00
|
|
|
/* release this device object */
|
2018-07-07 13:56:21 +08:00
|
|
|
rt_free(dev);
|
2017-12-24 00:00:18 +08:00
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_device_destroy);
|
2021-06-09 19:50:03 +08:00
|
|
|
#endif /* RT_USING_HEAP */
|
2017-12-24 00:00:18 +08:00
|
|
|
|
2010-05-04 07:17:25 +08:00
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function will initialize the specified device.
|
2010-05-04 07:17:25 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2013-06-24 17:06:09 +08:00
|
|
|
*
|
2021-09-10 15:55:08 +08:00
|
|
|
* @return the result, RT_EOK on successfully.
|
2010-05-04 07:17:25 +08:00
|
|
|
*/
|
|
|
|
rt_err_t rt_device_init(rt_device_t dev)
|
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_err_t result = RT_EOK;
|
2012-12-20 15:48:59 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
|
|
|
|
2019-12-16 13:59:46 +08:00
|
|
|
/* get device_init handler */
|
2018-06-10 17:59:17 +08:00
|
|
|
if (device_init != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
|
|
|
if (!(dev->flag & RT_DEVICE_FLAG_ACTIVATED))
|
|
|
|
{
|
2018-06-10 17:59:17 +08:00
|
|
|
result = device_init(dev);
|
2012-11-03 15:27:53 +08:00
|
|
|
if (result != RT_EOK)
|
|
|
|
{
|
2022-03-28 11:19:25 +08:00
|
|
|
RT_DEBUG_LOG(RT_DEBUG_DEVICE, ("To initialize device:%s failed. The error code is %d\n",
|
|
|
|
dev->parent.name, result));
|
2012-11-03 15:27:53 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dev->flag |= RT_DEVICE_FLAG_ACTIVATED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function will open a device.
|
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param oflag is the flags for device open.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-10 15:55:08 +08:00
|
|
|
* @return the result, RT_EOK on successfully.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
|
|
|
rt_err_t rt_device_open(rt_device_t dev, rt_uint16_t oflag)
|
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
rt_err_t result = RT_EOK;
|
2012-11-03 15:27:53 +08:00
|
|
|
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
2012-11-03 15:27:53 +08:00
|
|
|
|
|
|
|
/* if device is not initialized, initialize it. */
|
|
|
|
if (!(dev->flag & RT_DEVICE_FLAG_ACTIVATED))
|
|
|
|
{
|
2018-06-10 17:59:17 +08:00
|
|
|
if (device_init != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2018-06-10 17:59:17 +08:00
|
|
|
result = device_init(dev);
|
2012-11-03 15:27:53 +08:00
|
|
|
if (result != RT_EOK)
|
|
|
|
{
|
2022-03-28 11:19:25 +08:00
|
|
|
RT_DEBUG_LOG(RT_DEBUG_DEVICE, ("To initialize device:%s failed. The error code is %d\n",
|
|
|
|
dev->parent.name, result));
|
2012-11-03 15:27:53 +08:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dev->flag |= RT_DEVICE_FLAG_ACTIVATED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* device is a stand alone device and opened */
|
2012-12-20 15:48:59 +08:00
|
|
|
if ((dev->flag & RT_DEVICE_FLAG_STANDALONE) &&
|
|
|
|
(dev->open_flag & RT_DEVICE_OFLAG_OPEN))
|
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
return -RT_EBUSY;
|
2012-12-20 15:48:59 +08:00
|
|
|
}
|
2012-11-03 15:27:53 +08:00
|
|
|
|
2023-05-15 14:58:56 +08:00
|
|
|
/* device is not opened or opened by other oflag, call device_open interface */
|
|
|
|
if (!(dev->open_flag & RT_DEVICE_OFLAG_OPEN) ||
|
2023-05-16 18:46:42 +08:00
|
|
|
((dev->open_flag & RT_DEVICE_OFLAG_MASK) != (oflag & RT_DEVICE_OFLAG_MASK)))
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2023-05-15 14:58:56 +08:00
|
|
|
if (device_open != RT_NULL)
|
|
|
|
{
|
|
|
|
result = device_open(dev, oflag);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* set open flag */
|
|
|
|
dev->open_flag = (oflag & RT_DEVICE_OFLAG_MASK);
|
|
|
|
}
|
2017-10-15 22:31:53 +08:00
|
|
|
}
|
2012-11-03 15:27:53 +08:00
|
|
|
|
|
|
|
/* set open flag */
|
|
|
|
if (result == RT_EOK || result == -RT_ENOSYS)
|
2014-06-18 11:16:21 +08:00
|
|
|
{
|
2017-10-15 22:31:53 +08:00
|
|
|
dev->open_flag |= RT_DEVICE_OFLAG_OPEN;
|
2014-06-18 11:16:21 +08:00
|
|
|
|
|
|
|
dev->ref_count++;
|
|
|
|
/* don't let bad things happen silently. If you are bitten by this assert,
|
2023-05-15 14:58:56 +08:00
|
|
|
* please set the ref_count to a bigger type. */
|
2014-06-18 11:16:21 +08:00
|
|
|
RT_ASSERT(dev->ref_count != 0);
|
|
|
|
}
|
2012-11-03 15:27:53 +08:00
|
|
|
|
|
|
|
return result;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_open);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function will close a device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-10 15:55:08 +08:00
|
|
|
* @return the result, RT_EOK on successfully.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
|
|
|
rt_err_t rt_device_close(rt_device_t dev)
|
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
rt_err_t result = RT_EOK;
|
2012-11-03 15:27:53 +08:00
|
|
|
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
2012-11-03 15:27:53 +08:00
|
|
|
|
2013-07-09 11:54:50 +08:00
|
|
|
if (dev->ref_count == 0)
|
|
|
|
return -RT_ERROR;
|
|
|
|
|
|
|
|
dev->ref_count--;
|
|
|
|
|
|
|
|
if (dev->ref_count != 0)
|
|
|
|
return RT_EOK;
|
|
|
|
|
2019-12-16 13:59:46 +08:00
|
|
|
/* call device_close interface */
|
2018-06-10 17:59:17 +08:00
|
|
|
if (device_close != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2018-06-10 17:59:17 +08:00
|
|
|
result = device_close(dev);
|
2012-11-03 15:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set open flag */
|
|
|
|
if (result == RT_EOK || result == -RT_ENOSYS)
|
|
|
|
dev->open_flag = RT_DEVICE_OFLAG_CLOSE;
|
|
|
|
|
|
|
|
return result;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_close);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function will read some data from a device.
|
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param pos is the position when reading.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param buffer is a data buffer to save the read data.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param size is the size of buffer.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2022-03-28 11:19:25 +08:00
|
|
|
* @return the actually read size on successful, otherwise 0 will be returned.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
2022-03-28 11:19:25 +08:00
|
|
|
* @note the unit of size/pos is a block for block device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
2023-02-06 07:35:33 +08:00
|
|
|
rt_ssize_t rt_device_read(rt_device_t dev,
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_off_t pos,
|
|
|
|
void *buffer,
|
|
|
|
rt_size_t size)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2013-07-09 11:54:50 +08:00
|
|
|
if (dev->ref_count == 0)
|
|
|
|
{
|
|
|
|
rt_set_errno(-RT_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-12-16 13:59:46 +08:00
|
|
|
/* call device_read interface */
|
2018-06-10 17:59:17 +08:00
|
|
|
if (device_read != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2018-06-10 17:59:17 +08:00
|
|
|
return device_read(dev, pos, buffer, size);
|
2012-11-03 15:27:53 +08:00
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
/* set error code */
|
|
|
|
rt_set_errno(-RT_ENOSYS);
|
2012-03-17 14:43:49 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
return 0;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_read);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function will write some data to a device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param pos is the position when writing.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param buffer is the data buffer to be written to device.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param size is the size of buffer.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2022-03-28 11:19:25 +08:00
|
|
|
* @return the actually written size on successful, otherwise 0 will be returned.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
2022-03-28 11:19:25 +08:00
|
|
|
* @note the unit of size/pos is a block for block device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
2023-02-06 07:35:33 +08:00
|
|
|
rt_ssize_t rt_device_write(rt_device_t dev,
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_off_t pos,
|
|
|
|
const void *buffer,
|
|
|
|
rt_size_t size)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2013-07-09 11:54:50 +08:00
|
|
|
if (dev->ref_count == 0)
|
|
|
|
{
|
|
|
|
rt_set_errno(-RT_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-12-16 13:59:46 +08:00
|
|
|
/* call device_write interface */
|
2018-06-10 17:59:17 +08:00
|
|
|
if (device_write != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2018-06-10 17:59:17 +08:00
|
|
|
return device_write(dev, pos, buffer, size);
|
2012-11-03 15:27:53 +08:00
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
/* set error code */
|
|
|
|
rt_set_errno(-RT_ENOSYS);
|
2012-03-17 14:43:49 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
return 0;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_write);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function will perform a variety of control functions on devices.
|
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param cmd is the command sent to device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param arg is the argument of command.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
|
|
|
* @return the result, -RT_ENOSYS for failed.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
2017-10-15 22:31:53 +08:00
|
|
|
rt_err_t rt_device_control(rt_device_t dev, int cmd, void *arg)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2019-12-16 13:59:46 +08:00
|
|
|
/* call device_write interface */
|
2018-06-10 17:59:17 +08:00
|
|
|
if (device_control != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2018-06-10 17:59:17 +08:00
|
|
|
return device_control(dev, cmd, arg);
|
2012-11-03 15:27:53 +08:00
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2017-10-15 22:31:53 +08:00
|
|
|
return -RT_ENOSYS;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_control);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2010-11-29 08:04:55 +08:00
|
|
|
/**
|
2021-09-10 15:55:08 +08:00
|
|
|
* @brief This function will set the reception indication callback function. This callback function
|
|
|
|
* is invoked when this device receives data.
|
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param rx_ind is the indication callback function.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @return RT_EOK
|
2010-11-29 08:04:55 +08:00
|
|
|
*/
|
2022-01-15 01:24:12 +08:00
|
|
|
rt_err_t rt_device_set_rx_indicate(rt_device_t dev,
|
|
|
|
rt_err_t (*rx_ind)(rt_device_t dev,
|
|
|
|
rt_size_t size))
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
dev->rx_indicate = rx_ind;
|
2012-03-17 14:43:49 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
return RT_EOK;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_set_rx_indicate);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2010-11-29 08:04:55 +08:00
|
|
|
/**
|
2021-09-11 16:40:56 +08:00
|
|
|
* @brief This function will set a callback function. The callback function
|
|
|
|
* will be called when device has written data to physical hardware.
|
2021-09-10 15:55:08 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param dev is the pointer of device driver structure.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @param tx_done is the indication callback function.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
2021-09-11 16:40:56 +08:00
|
|
|
* @return RT_EOK
|
2010-11-29 08:04:55 +08:00
|
|
|
*/
|
2022-01-15 01:24:12 +08:00
|
|
|
rt_err_t rt_device_set_tx_complete(rt_device_t dev,
|
|
|
|
rt_err_t (*tx_done)(rt_device_t dev,
|
|
|
|
void *buffer))
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2022-01-15 01:24:12 +08:00
|
|
|
/* parameter check */
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2018-07-07 13:56:21 +08:00
|
|
|
RT_ASSERT(rt_object_get_type(&dev->parent) == RT_Object_Class_Device);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
dev->tx_complete = tx_done;
|
2012-03-17 14:43:49 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
return RT_EOK;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-10-20 06:44:34 +08:00
|
|
|
RTM_EXPORT(rt_device_set_tx_complete);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
#ifdef RT_USING_DM
|
|
|
|
/**
|
|
|
|
* This function bind drvier and device
|
|
|
|
*
|
|
|
|
* @param device the pointer of device structure
|
2023-04-15 00:33:43 +08:00
|
|
|
* @param driver the pointer of driver structure
|
2022-12-03 12:07:44 +08:00
|
|
|
* @param node the pointer of fdt node structure
|
|
|
|
*
|
|
|
|
* @return the error code, RT_EOK on successfully.
|
|
|
|
*/
|
|
|
|
rt_err_t rt_device_bind_driver(rt_device_t device, rt_driver_t driver, void *node)
|
|
|
|
{
|
|
|
|
if((!driver) || (!device))
|
|
|
|
{
|
|
|
|
return -RT_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
device->drv = driver;
|
2023-05-15 14:58:56 +08:00
|
|
|
#ifdef RT_USING_DEVICE_OPS
|
2022-12-03 12:07:44 +08:00
|
|
|
device->ops = driver->dev_ops;
|
2023-05-15 14:58:56 +08:00
|
|
|
#endif
|
2022-12-03 12:07:44 +08:00
|
|
|
device->dtb_node = node;
|
|
|
|
|
|
|
|
return RT_EOK;
|
2023-05-15 14:58:56 +08:00
|
|
|
}
|
2022-12-03 12:07:44 +08:00
|
|
|
RTM_EXPORT(rt_device_bind_driver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function create rt_device according to driver infomation
|
|
|
|
*
|
|
|
|
* @param drv the pointer of driver structure
|
|
|
|
* @param device_id specify the ID of the rt_device
|
|
|
|
*
|
|
|
|
* @return the error code, RT_EOK on successfully.
|
|
|
|
*/
|
|
|
|
rt_device_t rt_device_create_since_driver(rt_driver_t drv,int device_id)
|
|
|
|
{
|
|
|
|
rt_device_t device;
|
|
|
|
if (!drv)
|
|
|
|
{
|
|
|
|
return RT_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
device = (rt_device_t)rt_calloc(1,drv->device_size);
|
|
|
|
if(device == RT_NULL)
|
|
|
|
{
|
|
|
|
return RT_NULL;
|
|
|
|
}
|
|
|
|
device->device_id = device_id;
|
|
|
|
rt_snprintf(device->parent.name, sizeof(device->parent.name), "%s%d", drv->name, device_id);
|
|
|
|
return device;
|
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_device_create_since_driver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function rt_device probe and init
|
|
|
|
*
|
|
|
|
* @param device the pointer of rt_device structure
|
|
|
|
* @return the error code, RT_EOK on successfully.
|
|
|
|
*/
|
|
|
|
rt_err_t rt_device_probe_and_init(rt_device_t device)
|
|
|
|
{
|
|
|
|
int ret = -RT_ERROR;
|
|
|
|
if (!device)
|
|
|
|
{
|
|
|
|
return -RT_EINVAL;
|
|
|
|
}
|
|
|
|
if(!device->drv)
|
|
|
|
{
|
|
|
|
return -RT_ERROR;
|
|
|
|
}
|
|
|
|
if(device->drv->probe)
|
|
|
|
{
|
|
|
|
ret = device->drv->probe((rt_device_t)device);
|
|
|
|
}
|
|
|
|
if(device->drv->probe_init)
|
|
|
|
{
|
|
|
|
ret = device->drv->probe_init((rt_device_t)device);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_device_probe_and_init);
|
|
|
|
#endif /* RT_USING_DM */
|
2021-06-09 19:50:03 +08:00
|
|
|
#endif /* RT_USING_DEVICE */
|