2013-05-25 16:14:50 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2012 Corey Tabaka
|
|
|
|
|
*
|
2019-07-05 17:22:23 -07:00
|
|
|
* Use of this source code is governed by a MIT-style
|
|
|
|
|
* license that can be found in the LICENSE file or at
|
|
|
|
|
* https://opensource.org/licenses/MIT
|
2013-05-25 16:14:50 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <dev/driver.h>
|
|
|
|
|
#include <assert.h>
|
2019-06-17 18:28:51 -07:00
|
|
|
#include <lk/err.h>
|
|
|
|
|
#include <lk/trace.h>
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2018-12-31 16:47:32 -08:00
|
|
|
/* static list of devices constructed with DEVICE_INSTANCE macros */
|
2020-05-15 00:11:14 -07:00
|
|
|
extern struct device __start_devices __WEAK;
|
|
|
|
|
extern struct device __stop_devices __WEAK;
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
status_t device_init_all(void) {
|
2016-02-14 12:24:01 -08:00
|
|
|
status_t res = NO_ERROR;
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2020-05-15 00:11:14 -07:00
|
|
|
for (struct device *dev = &__start_devices; dev != &__stop_devices; dev++) {
|
2018-12-31 16:47:32 -08:00
|
|
|
if (dev->flags & DEVICE_FLAG_AUTOINIT) {
|
|
|
|
|
status_t code = device_init(dev);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2018-12-31 16:47:32 -08:00
|
|
|
if (code < 0) {
|
|
|
|
|
TRACEF("Driver init failed for driver \"%s\", device \"%s\", reason %d\n",
|
|
|
|
|
dev->driver->type, dev->name, code);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2018-12-31 16:47:32 -08:00
|
|
|
res = code;
|
|
|
|
|
}
|
2016-02-14 12:24:01 -08:00
|
|
|
}
|
|
|
|
|
}
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
return res;
|
2013-05-25 16:14:50 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
status_t device_fini_all(void) {
|
2016-02-14 12:24:01 -08:00
|
|
|
status_t res = NO_ERROR;
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2020-05-15 00:11:14 -07:00
|
|
|
for (struct device *dev = &__start_devices; dev != &__stop_devices; dev++) {
|
2016-02-14 12:24:01 -08:00
|
|
|
status_t code = device_fini(dev);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
if (code < 0) {
|
|
|
|
|
TRACEF("Driver fini failed for driver \"%s\", device \"%s\", reason %d\n",
|
|
|
|
|
dev->driver->type, dev->name, code);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
res = code;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
return res;
|
2013-05-25 16:14:50 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
status_t device_init(struct device *dev) {
|
2016-02-14 12:24:01 -08:00
|
|
|
if (!dev)
|
|
|
|
|
return ERR_INVALID_ARGS;
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
DEBUG_ASSERT(dev->driver);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
const struct driver_ops *ops = dev->driver->ops;
|
|
|
|
|
|
2018-12-31 16:47:32 -08:00
|
|
|
if (ops && ops->init) {
|
|
|
|
|
dprintf(INFO, "dev: initializing device %s:%s\n", dev->driver->type, dev->name);
|
|
|
|
|
status_t err = ops->init(dev);
|
|
|
|
|
if (err < 0) {
|
|
|
|
|
dev->device_state = DEVICE_INITIALIZED_FAILED;
|
|
|
|
|
} else {
|
|
|
|
|
dev->device_state = DEVICE_INITIALIZED;
|
|
|
|
|
}
|
|
|
|
|
return err;
|
|
|
|
|
} else {
|
2016-02-14 12:24:01 -08:00
|
|
|
return ERR_NOT_SUPPORTED;
|
2018-12-31 16:47:32 -08:00
|
|
|
}
|
2013-05-25 16:14:50 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
status_t device_fini(struct device *dev) {
|
2016-02-14 12:24:01 -08:00
|
|
|
if (!dev)
|
|
|
|
|
return ERR_INVALID_ARGS;
|
|
|
|
|
|
|
|
|
|
DEBUG_ASSERT(dev->driver);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
const struct driver_ops *ops = dev->driver->ops;
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
if (ops && ops->fini)
|
|
|
|
|
return ops->fini(dev);
|
|
|
|
|
else
|
|
|
|
|
return ERR_NOT_SUPPORTED;
|
2013-05-25 16:14:50 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
status_t device_suspend(struct device *dev) {
|
2016-02-14 12:24:01 -08:00
|
|
|
if (!dev)
|
|
|
|
|
return ERR_NOT_SUPPORTED;
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
DEBUG_ASSERT(dev->driver);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
const struct driver_ops *ops = dev->driver->ops;
|
|
|
|
|
|
|
|
|
|
if (ops && ops->suspend)
|
|
|
|
|
return ops->suspend(dev);
|
|
|
|
|
else
|
|
|
|
|
return ERR_NOT_SUPPORTED;
|
2013-05-25 16:14:50 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
status_t device_resume(struct device *dev) {
|
2016-02-14 12:24:01 -08:00
|
|
|
if (!dev)
|
|
|
|
|
return ERR_NOT_SUPPORTED;
|
|
|
|
|
|
|
|
|
|
DEBUG_ASSERT(dev->driver);
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
const struct driver_ops *ops = dev->driver->ops;
|
2013-05-25 16:14:50 -07:00
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
if (ops && ops->resume)
|
|
|
|
|
return ops->resume(dev);
|
|
|
|
|
else
|
|
|
|
|
return ERR_NOT_SUPPORTED;
|
2013-05-25 16:14:50 -07:00
|
|
|
}
|
|
|
|
|
|