From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from smtp6-g21.free.fr ([2a01:e0c:1:1599::15]) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Rcdpb-0006V2-MK for barebox@lists.infradead.org; Mon, 19 Dec 2011 14:04:45 +0000 From: Robert Jarzmik Date: Mon, 19 Dec 2011 15:04:07 +0100 Message-Id: <1324303449-30045-7-git-send-email-robert.jarzmik@free.fr> In-Reply-To: <1324303449-30045-1-git-send-email-robert.jarzmik@free.fr> References: <1324303449-30045-1-git-send-email-robert.jarzmik@free.fr> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: barebox-bounces@lists.infradead.org Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH V3 6/8] drivers/mtd: add mtd core hooks To: barebox@lists.infradead.org Add hooks for spinoff MTD drivers (mtdoob, mtdraw, ...). Signed-off-by: Robert Jarzmik --- drivers/mtd/core.c | 17 +++++++++++++++++ drivers/mtd/mtd.h | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 0 deletions(-) create mode 100644 drivers/mtd/mtd.h diff --git a/drivers/mtd/core.c b/drivers/mtd/core.c index 8611d02..a3cea33 100644 --- a/drivers/mtd/core.c +++ b/drivers/mtd/core.c @@ -26,6 +26,10 @@ #include #include +#include "mtd.h" + +static LIST_HEAD(mtd_register_hooks); + static ssize_t mtd_read(struct cdev *cdev, void* buf, size_t count, ulong offset, ulong flags) { @@ -250,6 +254,7 @@ static void mtd_exit_oob_cdev(struct mtd_info *mtd) int add_mtd_device(struct mtd_info *mtd, char *devname) { char str[16]; + struct mtddev_hook *hook; if (!devname) devname = "mtd"; @@ -276,12 +281,20 @@ int add_mtd_device(struct mtd_info *mtd, char *devname) devfs_create(&mtd->cdev); mtd_init_oob_cdev(mtd, devname); + list_for_each_entry(hook, &mtd_register_hooks, hook) + if (hook->add_mtd_device) + hook->add_mtd_device(mtd, devname); return 0; } int del_mtd_device (struct mtd_info *mtd) { + struct mtddev_hook *hook; + + list_for_each_entry(hook, &mtd_register_hooks, hook) + if (hook->del_mtd_device) + hook->del_mtd_device(mtd); unregister_device(&mtd->class_dev); mtd_exit_oob_cdev(mtd); free(mtd->param_size.value); @@ -289,3 +302,7 @@ int del_mtd_device (struct mtd_info *mtd) return 0; } +void mtdcore_add_hook(struct mtddev_hook *hook) +{ + list_add(&hook->hook, &mtd_register_hooks); +} diff --git a/drivers/mtd/mtd.h b/drivers/mtd/mtd.h new file mode 100644 index 0000000..261cd2b --- /dev/null +++ b/drivers/mtd/mtd.h @@ -0,0 +1,39 @@ +/* + * MTD devices registration + * + * Copyright (C) 2011 Robert Jarzmik + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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. + * + */ + +/** + * mtddev_hook - hook to register additional mtd devices + * @add_mtd_device: called when a MTD driver calls add_mtd_device() + * @del_mtd_device: called when a MTD driver calls del_mtd_device() + * + * Provide a hook to be called whenether a add_mtd_device() is called. + * Additionnal devices like mtdoob and mtdraw subscribe to the service. + */ +struct mtddev_hook { + struct list_head hook; + int (*add_mtd_device)(struct mtd_info *mtd, char *devname); + int (*del_mtd_device)(struct mtd_info *mtd); +}; + +/** + * mtdcore_add_hook - add a hook to MTD registration/unregistration + * @hook: the hook + * + * Normally called in a coredevice_initcall() to add another MTD layout (such as + * mtdraw, ...) + */ +void mtdcore_add_hook(struct mtddev_hook *hook); -- 1.7.5.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox