[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT PATCH 02/10] plat/xen/drivers: Introduce Consfront driver skeleton
Signed-off-by: Birlea Costin <costin.birlea@xxxxxxxxx> --- plat/xen/Config.uk | 8 +++++ plat/xen/Makefile.uk | 10 ++++++ plat/xen/drivers/cons/consfront.c | 70 +++++++++++++++++++++++++++++++++++++ plat/xen/drivers/cons/exportsyms.uk | 1 + 4 files changed, 89 insertions(+) create mode 100644 plat/xen/drivers/cons/consfront.c create mode 100644 plat/xen/drivers/cons/exportsyms.uk diff --git a/plat/xen/Config.uk b/plat/xen/Config.uk index 1ab4cc85..440d074c 100644 --- a/plat/xen/Config.uk +++ b/plat/xen/Config.uk @@ -72,5 +72,13 @@ config XEN_XENBUS menu "Xenbus Drivers" depends on XEN_XENBUS depends on XEN_GNTTAB + +config XEN_CONSFRONT + bool "Xenbus Consfront Driver" + default n + depends on LIBUKCONSDEV + help + Driver for console devices + endmenu endif diff --git a/plat/xen/Makefile.uk b/plat/xen/Makefile.uk index 69b10efc..ef0e076b 100644 --- a/plat/xen/Makefile.uk +++ b/plat/xen/Makefile.uk @@ -10,6 +10,7 @@ $(eval $(call addplat_s,xen,$(CONFIG_PLAT_XEN))) ## $(eval $(call addplatlib,xen,libxenplat)) $(eval $(call addplatlib_s,xen,libxenbus,$(CONFIG_XEN_XENBUS))) +$(eval $(call addplatlib_s,xen,libxenconsfront,$(CONFIG_XEN_CONSFRONT))) ## ## Xen platform compilation settings @@ -100,3 +101,12 @@ LIBXENBUS_SRCS-y += $(LIBXENPLAT_BASE)/xenbus/xs_comms.c LIBXENBUS_SRCS-y += $(LIBXENPLAT_BASE)/xenbus/xs_watch.c LIBXENBUS_SRCS-y += $(LIBXENPLAT_BASE)/xenbus/xs.c endif + +ifeq ($(CONFIG_XEN_CONSFRONT),y) +LIBXENCONSFRONT_EXPORTS = $(LIBXENPLAT_BASE)/drivers/cons/exportsyms.uk +LIBXENCONSFRONT_ASFLAGS-y += $(LIBXENPLAT_ASFLAGS-y) +LIBXENCONSFRONT_ASINCLUDES-y += $(LIBXENPLAT_ASINCLUDES-y) +LIBXENCONSFRONT_CFLAGS-y += $(LIBXENPLAT_CFLAGS-y) +LIBXENCONSFRONT_CINCLUDES-y += $(LIBXENPLAT_CINCLUDES-y) +LIBXENCONSFRONT_SRCS-y += $(LIBXENPLAT_BASE)/drivers/cons/consfront.c +endif \ No newline at end of file diff --git a/plat/xen/drivers/cons/consfront.c b/plat/xen/drivers/cons/consfront.c new file mode 100644 index 00000000..19abcd09 --- /dev/null +++ b/plat/xen/drivers/cons/consfront.c @@ -0,0 +1,70 @@ +/* SPDX-License-Identifier: BSD-3-Clause */ +/* + * Authors: Costin Birlea <costin.birlea@xxxxxxxxx> + * + * Copyright (c) 2019, University Politehnica of Bucharest. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the copyright holder nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. + */ +#include <xenbus/xenbus.h> + +#define DRIVER_NAME "xen-consfront" + +static struct uk_alloc *drv_allocator; + +static int consfront_add_dev(struct xenbus_device *xendev) +{ + int rc = 0; + + UK_ASSERT(xendev); + + return rc; +} + +static int consfront_drv_init(struct uk_alloc *allocator) +{ + if (!allocator) + return -EINVAL; + + drv_allocator = allocator; + return 0; +} + +static const xenbus_dev_type_t consfront_devtypes[] = { + xenbus_dev_console, + xenbus_dev_none +}; + +static struct xenbus_driver consfront_driver = { + .device_types = consfront_devtypes, + .init = consfront_drv_init, + .add_dev = consfront_add_dev +}; + +XENBUS_REGISTER_DRIVER(&consfront_driver); diff --git a/plat/xen/drivers/cons/exportsyms.uk b/plat/xen/drivers/cons/exportsyms.uk new file mode 100644 index 00000000..c86c3f35 --- /dev/null +++ b/plat/xen/drivers/cons/exportsyms.uk @@ -0,0 +1 @@ +none \ No newline at end of file -- 2.11.0 _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |