2009-07-03 06:48:23 +08:00
|
|
|
/*
|
|
|
|
* File : device.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
2012-03-17 14:43:49 +08:00
|
|
|
* COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
2009-12-25 20:18:53 +08:00
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
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
|
2012-10-20 06:44:34 +08:00
|
|
|
* 2012-10-20 Bernard add device check in register function,
|
|
|
|
* 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.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
#ifdef RT_USING_DEVICE
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function registers a device driver with specified name.
|
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
* @param name the device driver's name
|
|
|
|
* @param flags the flag of device
|
|
|
|
*
|
|
|
|
* @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;
|
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_register);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
/**
|
2010-11-29 08:04:55 +08:00
|
|
|
* This function removes a previously registered device driver
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
*
|
|
|
|
* @return the error code, RT_EOK on successfully.
|
|
|
|
*/
|
|
|
|
rt_err_t rt_device_unregister(rt_device_t dev)
|
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* This function initializes all registered device driver
|
|
|
|
*
|
|
|
|
* @return the error code, RT_EOK on successfully.
|
|
|
|
*/
|
2011-09-21 11:56:42 +08:00
|
|
|
rt_err_t rt_device_init_all(void)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
struct rt_device *device;
|
|
|
|
struct rt_list_node *node;
|
|
|
|
struct rt_object_information *information;
|
|
|
|
register rt_err_t result;
|
|
|
|
|
|
|
|
extern struct rt_object_information rt_object_container[];
|
|
|
|
|
|
|
|
information = &rt_object_container[RT_Object_Class_Device];
|
|
|
|
|
|
|
|
/* for each device */
|
2012-12-20 15:48:59 +08:00
|
|
|
for (node = information->object_list.next;
|
|
|
|
node != &(information->object_list);
|
|
|
|
node = node->next)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
|
|
|
rt_err_t (*init)(rt_device_t dev);
|
2012-12-20 15:48:59 +08:00
|
|
|
device = (struct rt_device *)rt_list_entry(node,
|
|
|
|
struct rt_object,
|
|
|
|
list);
|
2012-11-03 15:27:53 +08:00
|
|
|
|
|
|
|
/* get device init handler */
|
|
|
|
init = device->init;
|
|
|
|
if (init != RT_NULL && !(device->flag & RT_DEVICE_FLAG_ACTIVATED))
|
|
|
|
{
|
|
|
|
result = init(device);
|
|
|
|
if (result != RT_EOK)
|
|
|
|
{
|
|
|
|
rt_kprintf("To initialize device:%s failed. The error code is %d\n",
|
|
|
|
device->parent.name, result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
device->flag |= RT_DEVICE_FLAG_ACTIVATED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return RT_EOK;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function finds a device driver by specified name.
|
|
|
|
*
|
|
|
|
* @param name the device driver's name
|
|
|
|
*
|
|
|
|
* @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
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
struct rt_object *object;
|
|
|
|
struct rt_list_node *node;
|
|
|
|
struct rt_object_information *information;
|
|
|
|
|
|
|
|
extern struct rt_object_information rt_object_container[];
|
|
|
|
|
|
|
|
/* enter critical */
|
|
|
|
if (rt_thread_self() != RT_NULL)
|
|
|
|
rt_enter_critical();
|
|
|
|
|
|
|
|
/* try to find device object */
|
|
|
|
information = &rt_object_container[RT_Object_Class_Device];
|
2012-12-20 15:48:59 +08:00
|
|
|
for (node = information->object_list.next;
|
|
|
|
node != &(information->object_list);
|
|
|
|
node = node->next)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
|
|
|
object = rt_list_entry(node, struct rt_object, list);
|
|
|
|
if (rt_strncmp(object->name, name, RT_NAME_MAX) == 0)
|
|
|
|
{
|
|
|
|
/* leave critical */
|
|
|
|
if (rt_thread_self() != RT_NULL)
|
|
|
|
rt_exit_critical();
|
|
|
|
|
|
|
|
return (rt_device_t)object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* leave critical */
|
|
|
|
if (rt_thread_self() != RT_NULL)
|
|
|
|
rt_exit_critical();
|
|
|
|
|
|
|
|
/* not found */
|
|
|
|
return RT_NULL;
|
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
|
|
|
|
|
|
|
/**
|
2010-11-29 08:04:55 +08:00
|
|
|
* This function will initialize the specified device
|
2010-05-04 07:17:25 +08:00
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
*
|
|
|
|
* @return the result
|
|
|
|
*/
|
|
|
|
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);
|
|
|
|
|
|
|
|
/* get device init handler */
|
2012-12-25 09:44:23 +08:00
|
|
|
if (dev->init != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
|
|
|
if (!(dev->flag & RT_DEVICE_FLAG_ACTIVATED))
|
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
result = dev->init(dev);
|
2012-11-03 15:27:53 +08:00
|
|
|
if (result != RT_EOK)
|
|
|
|
{
|
|
|
|
rt_kprintf("To initialize device:%s failed. The error code is %d\n",
|
|
|
|
dev->parent.name, result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dev->flag |= RT_DEVICE_FLAG_ACTIVATED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will open a device
|
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
2010-11-29 08:04:55 +08:00
|
|
|
* @param oflag the flags for device open
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* @return the result
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
|
|
|
RT_ASSERT(dev != RT_NULL);
|
|
|
|
|
|
|
|
/* if device is not initialized, initialize it. */
|
|
|
|
if (!(dev->flag & RT_DEVICE_FLAG_ACTIVATED))
|
|
|
|
{
|
|
|
|
if (dev->init != RT_NULL)
|
|
|
|
{
|
|
|
|
result = dev->init(dev);
|
|
|
|
if (result != RT_EOK)
|
|
|
|
{
|
|
|
|
rt_kprintf("To initialize device:%s failed. The error code is %d\n",
|
|
|
|
dev->parent.name, result);
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
/* call device open interface */
|
2012-12-25 09:44:23 +08:00
|
|
|
if (dev->open != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
result = dev->open(dev, oflag);
|
2012-11-03 15:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set open flag */
|
|
|
|
if (result == RT_EOK || result == -RT_ENOSYS)
|
|
|
|
dev->open_flag = oflag | RT_DEVICE_OFLAG_OPEN;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will close a device
|
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
*
|
|
|
|
* @return the result
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
|
|
|
RT_ASSERT(dev != RT_NULL);
|
|
|
|
|
|
|
|
/* call device close interface */
|
2012-12-25 09:44:23 +08:00
|
|
|
if (dev->close != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
result = dev->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
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will read some data from a device.
|
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
* @param pos the position of reading
|
|
|
|
* @param buffer the data buffer to save read data
|
|
|
|
* @param size the size of buffer
|
|
|
|
*
|
|
|
|
* @return the actually read size on successful, otherwise negative returned.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
|
|
|
* @note since 0.4.0, the unit of size/pos is a block for block device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_size_t rt_device_read(rt_device_t dev,
|
|
|
|
rt_off_t pos,
|
|
|
|
void *buffer,
|
|
|
|
rt_size_t size)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
/* call device read interface */
|
2012-12-25 09:44:23 +08:00
|
|
|
if (dev->read != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
return dev->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
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will write some data to a device.
|
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
* @param pos the position of written
|
|
|
|
* @param buffer the data buffer to be written to device
|
|
|
|
* @param size the size of buffer
|
|
|
|
*
|
|
|
|
* @return the actually written size on successful, otherwise negative returned.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
|
|
|
* @note since 0.4.0, the unit of size/pos is a block for block device.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
2012-11-03 15:27:53 +08:00
|
|
|
rt_size_t rt_device_write(rt_device_t dev,
|
|
|
|
rt_off_t pos,
|
|
|
|
const void *buffer,
|
|
|
|
rt_size_t size)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
/* call device write interface */
|
2012-12-25 09:44:23 +08:00
|
|
|
if (dev->write != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
return dev->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
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will perform a variety of control functions on devices.
|
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
* @param cmd the command sent to device
|
|
|
|
* @param arg the argument of command
|
|
|
|
*
|
|
|
|
* @return the result
|
|
|
|
*/
|
2011-09-21 11:56:42 +08:00
|
|
|
rt_err_t rt_device_control(rt_device_t dev, rt_uint8_t cmd, void *arg)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-11-03 15:27:53 +08:00
|
|
|
/* call device write interface */
|
2012-12-25 09:44:23 +08:00
|
|
|
if (dev->control != RT_NULL)
|
2012-11-03 15:27:53 +08:00
|
|
|
{
|
2012-12-25 09:44:23 +08:00
|
|
|
return dev->control(dev, cmd, arg);
|
2012-11-03 15:27:53 +08:00
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2012-12-25 09:44:23 +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_control);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2010-11-29 08:04:55 +08:00
|
|
|
/**
|
|
|
|
* This function will set the indication callback function when device receives
|
|
|
|
* data.
|
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
* @param rx_ind the indication callback function
|
|
|
|
*
|
|
|
|
* @return RT_EOK
|
|
|
|
*/
|
2012-11-03 15:27:53 +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
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
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
|
|
|
/**
|
2012-11-03 15:27:53 +08:00
|
|
|
* This function will set the indication callback function when device has
|
|
|
|
* written data to physical hardware.
|
2010-11-29 08:04:55 +08:00
|
|
|
*
|
|
|
|
* @param dev the pointer of device driver structure
|
|
|
|
* @param tx_done the indication callback function
|
|
|
|
*
|
|
|
|
* @return RT_EOK
|
|
|
|
*/
|
2012-11-03 15:27:53 +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
|
|
|
{
|
2012-11-03 15:27:53 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
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
|
|
|
|
|
|
|
#endif
|