2013-05-25 16:14:50 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2012 Corey Tabaka
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
|
* a copy of this software and associated documentation files
|
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
|
* subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#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 */
|
2013-05-25 16:14:50 -07:00
|
|
|
extern struct device __devices[];
|
|
|
|
|
extern struct device __devices_end[];
|
|
|
|
|
|
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
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
struct device *dev = __devices;
|
|
|
|
|
while (dev != __devices_end) {
|
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
|
|
|
dev++;
|
|
|
|
|
}
|
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
|
|
|
|
2016-02-14 12:24:01 -08:00
|
|
|
struct device *dev = __devices;
|
|
|
|
|
while (dev != __devices_end) {
|
|
|
|
|
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
|
|
|
dev++;
|
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|