123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- // SPDX-License-Identifier: GPL-2.0 OR MIT
- /*
- * Xen para-virtual DRM device
- *
- * Copyright (C) 2016-2018 EPAM Systems Inc.
- *
- * Author: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
- */
- #include <drm/drmP.h>
- #include <linux/errno.h>
- #include <linux/irq.h>
- #include <xen/xenbus.h>
- #include <xen/events.h>
- #include <xen/grant_table.h>
- #include "xen_drm_front.h"
- #include "xen_drm_front_evtchnl.h"
- static irqreturn_t evtchnl_interrupt_ctrl(int irq, void *dev_id)
- {
- struct xen_drm_front_evtchnl *evtchnl = dev_id;
- struct xen_drm_front_info *front_info = evtchnl->front_info;
- struct xendispl_resp *resp;
- RING_IDX i, rp;
- unsigned long flags;
- if (unlikely(evtchnl->state != EVTCHNL_STATE_CONNECTED))
- return IRQ_HANDLED;
- spin_lock_irqsave(&front_info->io_lock, flags);
- again:
- rp = evtchnl->u.req.ring.sring->rsp_prod;
- /* ensure we see queued responses up to rp */
- virt_rmb();
- for (i = evtchnl->u.req.ring.rsp_cons; i != rp; i++) {
- resp = RING_GET_RESPONSE(&evtchnl->u.req.ring, i);
- if (unlikely(resp->id != evtchnl->evt_id))
- continue;
- switch (resp->operation) {
- case XENDISPL_OP_PG_FLIP:
- case XENDISPL_OP_FB_ATTACH:
- case XENDISPL_OP_FB_DETACH:
- case XENDISPL_OP_DBUF_CREATE:
- case XENDISPL_OP_DBUF_DESTROY:
- case XENDISPL_OP_SET_CONFIG:
- evtchnl->u.req.resp_status = resp->status;
- complete(&evtchnl->u.req.completion);
- break;
- default:
- DRM_ERROR("Operation %d is not supported\n",
- resp->operation);
- break;
- }
- }
- evtchnl->u.req.ring.rsp_cons = i;
- if (i != evtchnl->u.req.ring.req_prod_pvt) {
- int more_to_do;
- RING_FINAL_CHECK_FOR_RESPONSES(&evtchnl->u.req.ring,
- more_to_do);
- if (more_to_do)
- goto again;
- } else {
- evtchnl->u.req.ring.sring->rsp_event = i + 1;
- }
- spin_unlock_irqrestore(&front_info->io_lock, flags);
- return IRQ_HANDLED;
- }
- static irqreturn_t evtchnl_interrupt_evt(int irq, void *dev_id)
- {
- struct xen_drm_front_evtchnl *evtchnl = dev_id;
- struct xen_drm_front_info *front_info = evtchnl->front_info;
- struct xendispl_event_page *page = evtchnl->u.evt.page;
- u32 cons, prod;
- unsigned long flags;
- if (unlikely(evtchnl->state != EVTCHNL_STATE_CONNECTED))
- return IRQ_HANDLED;
- spin_lock_irqsave(&front_info->io_lock, flags);
- prod = page->in_prod;
- /* ensure we see ring contents up to prod */
- virt_rmb();
- if (prod == page->in_cons)
- goto out;
- for (cons = page->in_cons; cons != prod; cons++) {
- struct xendispl_evt *event;
- event = &XENDISPL_IN_RING_REF(page, cons);
- if (unlikely(event->id != evtchnl->evt_id++))
- continue;
- switch (event->type) {
- case XENDISPL_EVT_PG_FLIP:
- xen_drm_front_on_frame_done(front_info, evtchnl->index,
- event->op.pg_flip.fb_cookie);
- break;
- }
- }
- page->in_cons = cons;
- /* ensure ring contents */
- virt_wmb();
- out:
- spin_unlock_irqrestore(&front_info->io_lock, flags);
- return IRQ_HANDLED;
- }
- static void evtchnl_free(struct xen_drm_front_info *front_info,
- struct xen_drm_front_evtchnl *evtchnl)
- {
- unsigned long page = 0;
- if (evtchnl->type == EVTCHNL_TYPE_REQ)
- page = (unsigned long)evtchnl->u.req.ring.sring;
- else if (evtchnl->type == EVTCHNL_TYPE_EVT)
- page = (unsigned long)evtchnl->u.evt.page;
- if (!page)
- return;
- evtchnl->state = EVTCHNL_STATE_DISCONNECTED;
- if (evtchnl->type == EVTCHNL_TYPE_REQ) {
- /* release all who still waits for response if any */
- evtchnl->u.req.resp_status = -EIO;
- complete_all(&evtchnl->u.req.completion);
- }
- if (evtchnl->irq)
- unbind_from_irqhandler(evtchnl->irq, evtchnl);
- if (evtchnl->port)
- xenbus_free_evtchn(front_info->xb_dev, evtchnl->port);
- /* end access and free the page */
- if (evtchnl->gref != GRANT_INVALID_REF)
- gnttab_end_foreign_access(evtchnl->gref, 0, page);
- memset(evtchnl, 0, sizeof(*evtchnl));
- }
- static int evtchnl_alloc(struct xen_drm_front_info *front_info, int index,
- struct xen_drm_front_evtchnl *evtchnl,
- enum xen_drm_front_evtchnl_type type)
- {
- struct xenbus_device *xb_dev = front_info->xb_dev;
- unsigned long page;
- grant_ref_t gref;
- irq_handler_t handler;
- int ret;
- memset(evtchnl, 0, sizeof(*evtchnl));
- evtchnl->type = type;
- evtchnl->index = index;
- evtchnl->front_info = front_info;
- evtchnl->state = EVTCHNL_STATE_DISCONNECTED;
- evtchnl->gref = GRANT_INVALID_REF;
- page = get_zeroed_page(GFP_NOIO | __GFP_HIGH);
- if (!page) {
- ret = -ENOMEM;
- goto fail;
- }
- if (type == EVTCHNL_TYPE_REQ) {
- struct xen_displif_sring *sring;
- init_completion(&evtchnl->u.req.completion);
- mutex_init(&evtchnl->u.req.req_io_lock);
- sring = (struct xen_displif_sring *)page;
- SHARED_RING_INIT(sring);
- FRONT_RING_INIT(&evtchnl->u.req.ring, sring, XEN_PAGE_SIZE);
- ret = xenbus_grant_ring(xb_dev, sring, 1, &gref);
- if (ret < 0) {
- evtchnl->u.req.ring.sring = NULL;
- free_page(page);
- goto fail;
- }
- handler = evtchnl_interrupt_ctrl;
- } else {
- ret = gnttab_grant_foreign_access(xb_dev->otherend_id,
- virt_to_gfn((void *)page), 0);
- if (ret < 0) {
- free_page(page);
- goto fail;
- }
- evtchnl->u.evt.page = (struct xendispl_event_page *)page;
- gref = ret;
- handler = evtchnl_interrupt_evt;
- }
- evtchnl->gref = gref;
- ret = xenbus_alloc_evtchn(xb_dev, &evtchnl->port);
- if (ret < 0)
- goto fail;
- ret = bind_evtchn_to_irqhandler(evtchnl->port,
- handler, 0, xb_dev->devicetype,
- evtchnl);
- if (ret < 0)
- goto fail;
- evtchnl->irq = ret;
- return 0;
- fail:
- DRM_ERROR("Failed to allocate ring: %d\n", ret);
- return ret;
- }
- int xen_drm_front_evtchnl_create_all(struct xen_drm_front_info *front_info)
- {
- struct xen_drm_front_cfg *cfg;
- int ret, conn;
- cfg = &front_info->cfg;
- front_info->evt_pairs =
- kcalloc(cfg->num_connectors,
- sizeof(struct xen_drm_front_evtchnl_pair),
- GFP_KERNEL);
- if (!front_info->evt_pairs) {
- ret = -ENOMEM;
- goto fail;
- }
- for (conn = 0; conn < cfg->num_connectors; conn++) {
- ret = evtchnl_alloc(front_info, conn,
- &front_info->evt_pairs[conn].req,
- EVTCHNL_TYPE_REQ);
- if (ret < 0) {
- DRM_ERROR("Error allocating control channel\n");
- goto fail;
- }
- ret = evtchnl_alloc(front_info, conn,
- &front_info->evt_pairs[conn].evt,
- EVTCHNL_TYPE_EVT);
- if (ret < 0) {
- DRM_ERROR("Error allocating in-event channel\n");
- goto fail;
- }
- }
- front_info->num_evt_pairs = cfg->num_connectors;
- return 0;
- fail:
- xen_drm_front_evtchnl_free_all(front_info);
- return ret;
- }
- static int evtchnl_publish(struct xenbus_transaction xbt,
- struct xen_drm_front_evtchnl *evtchnl,
- const char *path, const char *node_ring,
- const char *node_chnl)
- {
- struct xenbus_device *xb_dev = evtchnl->front_info->xb_dev;
- int ret;
- /* write control channel ring reference */
- ret = xenbus_printf(xbt, path, node_ring, "%u", evtchnl->gref);
- if (ret < 0) {
- xenbus_dev_error(xb_dev, ret, "writing ring-ref");
- return ret;
- }
- /* write event channel ring reference */
- ret = xenbus_printf(xbt, path, node_chnl, "%u", evtchnl->port);
- if (ret < 0) {
- xenbus_dev_error(xb_dev, ret, "writing event channel");
- return ret;
- }
- return 0;
- }
- int xen_drm_front_evtchnl_publish_all(struct xen_drm_front_info *front_info)
- {
- struct xenbus_transaction xbt;
- struct xen_drm_front_cfg *plat_data;
- int ret, conn;
- plat_data = &front_info->cfg;
- again:
- ret = xenbus_transaction_start(&xbt);
- if (ret < 0) {
- xenbus_dev_fatal(front_info->xb_dev, ret,
- "starting transaction");
- return ret;
- }
- for (conn = 0; conn < plat_data->num_connectors; conn++) {
- ret = evtchnl_publish(xbt, &front_info->evt_pairs[conn].req,
- plat_data->connectors[conn].xenstore_path,
- XENDISPL_FIELD_REQ_RING_REF,
- XENDISPL_FIELD_REQ_CHANNEL);
- if (ret < 0)
- goto fail;
- ret = evtchnl_publish(xbt, &front_info->evt_pairs[conn].evt,
- plat_data->connectors[conn].xenstore_path,
- XENDISPL_FIELD_EVT_RING_REF,
- XENDISPL_FIELD_EVT_CHANNEL);
- if (ret < 0)
- goto fail;
- }
- ret = xenbus_transaction_end(xbt, 0);
- if (ret < 0) {
- if (ret == -EAGAIN)
- goto again;
- xenbus_dev_fatal(front_info->xb_dev, ret,
- "completing transaction");
- goto fail_to_end;
- }
- return 0;
- fail:
- xenbus_transaction_end(xbt, 1);
- fail_to_end:
- xenbus_dev_fatal(front_info->xb_dev, ret, "writing Xen store");
- return ret;
- }
- void xen_drm_front_evtchnl_flush(struct xen_drm_front_evtchnl *evtchnl)
- {
- int notify;
- evtchnl->u.req.ring.req_prod_pvt++;
- RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&evtchnl->u.req.ring, notify);
- if (notify)
- notify_remote_via_irq(evtchnl->irq);
- }
- void xen_drm_front_evtchnl_set_state(struct xen_drm_front_info *front_info,
- enum xen_drm_front_evtchnl_state state)
- {
- unsigned long flags;
- int i;
- if (!front_info->evt_pairs)
- return;
- spin_lock_irqsave(&front_info->io_lock, flags);
- for (i = 0; i < front_info->num_evt_pairs; i++) {
- front_info->evt_pairs[i].req.state = state;
- front_info->evt_pairs[i].evt.state = state;
- }
- spin_unlock_irqrestore(&front_info->io_lock, flags);
- }
- void xen_drm_front_evtchnl_free_all(struct xen_drm_front_info *front_info)
- {
- int i;
- if (!front_info->evt_pairs)
- return;
- for (i = 0; i < front_info->num_evt_pairs; i++) {
- evtchnl_free(front_info, &front_info->evt_pairs[i].req);
- evtchnl_free(front_info, &front_info->evt_pairs[i].evt);
- }
- kfree(front_info->evt_pairs);
- front_info->evt_pairs = NULL;
- }
|