9
0
Fork 0
barebox/fs/devfs.c

268 lines
5.4 KiB
C
Raw Permalink Normal View History

2007-07-05 16:02:19 +00:00
/*
* devfs.c - a device file system for barebox
2007-07-05 16:02:19 +00:00
*
* Copyright (c) 2007 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
2007-07-05 16:01:39 +00:00
#include <common.h>
#include <driver.h>
#include <init.h>
#include <malloc.h>
#include <fs.h>
#include <command.h>
#include <errno.h>
#include <xfuncs.h>
2007-07-05 16:01:39 +00:00
#include <linux/stat.h>
#include <ioctl.h>
#include <nand.h>
#include <linux/err.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/mtd-abi.h>
#include <partition.h>
2007-07-05 16:01:39 +00:00
extern struct list_head cdev_list;
static int devfs_read(struct device_d *_dev, FILE *f, void *buf, size_t size)
{
struct cdev *cdev = f->inode;
return cdev_read(cdev, buf, size, f->pos, f->flags);
}
static int devfs_write(struct device_d *_dev, FILE *f, const void *buf, size_t size)
{
struct cdev *cdev = f->inode;
if (cdev->flags & DEVFS_PARTITION_READONLY)
return -EPERM;
return cdev_write(cdev, buf, size, f->pos, f->flags);
}
static loff_t devfs_lseek(struct device_d *_dev, FILE *f, loff_t pos)
{
struct cdev *cdev = f->inode;
loff_t ret = -1;
if (cdev->ops->lseek)
ret = cdev->ops->lseek(cdev, pos + cdev->offset);
if (ret != -1)
f->pos = pos;
return ret - cdev->offset;
}
static int devfs_erase(struct device_d *_dev, FILE *f, size_t count, loff_t offset)
2007-07-05 16:01:54 +00:00
{
struct cdev *cdev = f->inode;
if (cdev->flags & DEVFS_PARTITION_READONLY)
return -EPERM;
if (!cdev->ops->erase)
return -ENOSYS;
2007-07-05 16:01:54 +00:00
if (count + offset > cdev->size)
count = cdev->size - offset;
return cdev->ops->erase(cdev, count, offset + cdev->offset);
2007-07-05 16:01:54 +00:00
}
static int devfs_protect(struct device_d *_dev, FILE *f, size_t count, loff_t offset, int prot)
2007-07-16 08:29:28 +00:00
{
struct cdev *cdev = f->inode;
2007-07-16 08:29:28 +00:00
if (!cdev->ops->protect)
return -ENOSYS;
return cdev->ops->protect(cdev, count, offset + cdev->offset, prot);
2007-07-16 08:29:28 +00:00
}
static int devfs_memmap(struct device_d *_dev, FILE *f, void **map, int flags)
{
struct cdev *cdev = f->inode;
int ret = -ENOSYS;
if (!cdev->ops->memmap)
return -EINVAL;
ret = cdev->ops->memmap(cdev, map, flags);
if (!ret)
*map = (void *)((unsigned long)*map + (unsigned long)cdev->offset);
return ret;
}
static int devfs_open(struct device_d *_dev, FILE *f, const char *filename)
2007-07-05 16:01:39 +00:00
{
struct cdev *cdev;
int ret;
2007-07-05 16:01:39 +00:00
cdev = cdev_by_name(filename + 1);
if (!cdev)
2007-07-05 16:01:39 +00:00
return -ENOENT;
f->size = cdev->flags & DEVFS_IS_CHARACTER_DEV ?
FILE_SIZE_STREAM : cdev->size;
f->inode = cdev;
if (cdev->ops->open) {
ret = cdev->ops->open(cdev, f->flags);
if (ret)
return ret;
}
cdev->open++;
return 0;
2007-07-05 16:01:39 +00:00
}
static int devfs_close(struct device_d *_dev, FILE *f)
2007-07-05 16:01:39 +00:00
{
struct cdev *cdev = f->inode;
int ret;
if (cdev->ops->close) {
ret = cdev->ops->close(cdev);
if (ret)
return ret;
}
cdev->open--;
return 0;
}
static int devfs_flush(struct device_d *_dev, FILE *f)
{
struct cdev *cdev = f->inode;
if (cdev->ops->flush)
return cdev->ops->flush(cdev);
return 0;
}
static int devfs_ioctl(struct device_d *_dev, FILE *f, int request, void *buf)
{
struct cdev *cdev = f->inode;
return cdev_ioctl(cdev, request, buf);
2007-07-05 16:01:39 +00:00
}
2007-07-05 19:46:42 +00:00
static int devfs_truncate(struct device_d *dev, FILE *f, ulong size)
{
if (f->dev->num_resources < 1)
return -ENOSPC;
if (size > resource_size(&f->dev->resource[0]))
2007-07-05 19:46:42 +00:00
return -ENOSPC;
return 0;
}
2007-09-28 08:07:26 +00:00
static DIR* devfs_opendir(struct device_d *dev, const char *pathname)
2007-07-05 16:01:39 +00:00
{
DIR *dir;
2007-07-05 16:01:39 +00:00
dir = xzalloc(sizeof(DIR));
2007-07-05 16:01:39 +00:00
if (!list_empty(&cdev_list))
dir->priv = list_first_entry(&cdev_list, struct cdev, list);
2007-07-05 16:01:39 +00:00
return dir;
}
2007-09-28 08:07:26 +00:00
static struct dirent* devfs_readdir(struct device_d *_dev, DIR *dir)
2007-07-05 16:01:39 +00:00
{
struct cdev *cdev = dir->priv;
2007-07-05 16:01:39 +00:00
if (!cdev)
return NULL;
2007-07-05 16:01:39 +00:00
list_for_each_entry_from(cdev, &cdev_list, list) {
strcpy(dir->d.d_name, cdev->name);
dir->priv = list_entry(cdev->list.next, struct cdev, list);
2007-07-05 16:01:39 +00:00
return &dir->d;
}
return NULL;
}
2007-09-28 08:07:26 +00:00
static int devfs_closedir(struct device_d *dev, DIR *dir)
2007-07-05 16:01:39 +00:00
{
free(dir);
return 0;
}
2007-09-28 08:07:26 +00:00
static int devfs_stat(struct device_d *_dev, const char *filename, struct stat *s)
2007-07-05 16:01:39 +00:00
{
struct cdev *cdev;
2007-07-05 16:01:39 +00:00
cdev = cdev_by_name(filename + 1);
if (!cdev)
2007-07-05 16:01:39 +00:00
return -ENOENT;
s->st_mode = S_IFCHR;
s->st_size = cdev->size;
if (cdev->ops->write)
2007-07-05 16:01:39 +00:00
s->st_mode |= S_IWUSR;
if (cdev->ops->read)
2007-07-05 16:01:39 +00:00
s->st_mode |= S_IRUSR;
return 0;
}
2007-09-28 08:07:26 +00:00
static int devfs_probe(struct device_d *dev)
2007-07-05 16:01:39 +00:00
{
return 0;
}
static void devfs_delete(struct device_d *dev)
{
}
2007-07-05 16:01:39 +00:00
static struct fs_driver_d devfs_driver = {
.read = devfs_read,
.write = devfs_write,
.lseek = devfs_lseek,
2007-07-05 16:01:39 +00:00
.open = devfs_open,
.close = devfs_close,
.flush = devfs_flush,
.ioctl = devfs_ioctl,
2007-07-05 16:01:39 +00:00
.opendir = devfs_opendir,
.readdir = devfs_readdir,
2007-07-05 19:46:42 +00:00
.truncate = devfs_truncate,
2007-07-05 16:01:39 +00:00
.closedir = devfs_closedir,
.stat = devfs_stat,
2007-07-05 16:01:54 +00:00
.erase = devfs_erase,
2007-07-16 08:29:28 +00:00
.protect = devfs_protect,
.memmap = devfs_memmap,
2007-07-05 16:01:39 +00:00
.flags = FS_DRIVER_NO_DEV,
.drv = {
.probe = devfs_probe,
.remove = devfs_delete,
2007-07-05 16:01:39 +00:00
.name = "devfs",
}
};
2007-09-28 08:07:26 +00:00
static int devfs_init(void)
2007-07-05 16:01:39 +00:00
{
return register_fs_driver(&devfs_driver);
2007-07-05 16:01:39 +00:00
}
coredevice_initcall(devfs_init);