123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058 |
- /*
- * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
- * Copyright (C) 2013 Red Hat
- * Author: Rob Clark <[email protected]>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published by
- * the Free Software Foundation.
- *
- * 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.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
- * Copyright (c) 2016 Intel Corporation
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that copyright
- * notice and this permission notice appear in supporting documentation, and
- * that the name of the copyright holders not be used in advertising or
- * publicity pertaining to distribution of the software without specific,
- * written prior permission. The copyright holders make no representations
- * about the suitability of this software for any purpose. It is provided "as
- * is" without express or implied warranty.
- *
- * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
- * OF THIS SOFTWARE.
- */
- #include <linux/of_address.h>
- #include <linux/kthread.h>
- #include <uapi/linux/sched/types.h>
- #include <drm/drm_of.h>
- #include "msm_drv.h"
- #include "msm_kms.h"
- #include "msm_mmu.h"
- #include "sde_wb.h"
- #include "sde_dbg.h"
- /*
- * MSM driver version:
- * - 1.0.0 - initial interface
- * - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers
- * - 1.2.0 - adds explicit fence support for submit ioctl
- * - 1.3.0 - adds GMEM_BASE + NR_RINGS params, SUBMITQUEUE_NEW +
- * SUBMITQUEUE_CLOSE ioctls, and MSM_INFO_IOVA flag for
- * MSM_GEM_INFO ioctl.
- */
- #define MSM_VERSION_MAJOR 1
- #define MSM_VERSION_MINOR 3
- #define MSM_VERSION_PATCHLEVEL 0
- static void msm_fb_output_poll_changed(struct drm_device *dev)
- {
- struct msm_drm_private *priv = NULL;
- if (!dev) {
- DRM_ERROR("output_poll_changed failed, invalid input\n");
- return;
- }
- priv = dev->dev_private;
- if (priv->fbdev)
- drm_fb_helper_hotplug_event(priv->fbdev);
- }
- /**
- * msm_atomic_helper_check - validate state object
- * @dev: DRM device
- * @state: the driver state object
- *
- * This is a wrapper for the drm_atomic_helper_check to check the modeset
- * and state checking for planes. Additionally it checks if any secure
- * transition(moving CRTC and planes between secure and non-secure states and
- * vice versa) is allowed or not. When going to secure state, planes
- * with fb_mode as dir translated only can be staged on the CRTC, and only one
- * CRTC should be active.
- * Also mixing of secure and non-secure is not allowed.
- *
- * RETURNS
- * Zero for success or -errorno.
- */
- int msm_atomic_check(struct drm_device *dev,
- struct drm_atomic_state *state)
- {
- struct msm_drm_private *priv;
- priv = dev->dev_private;
- if (priv && priv->kms && priv->kms->funcs &&
- priv->kms->funcs->atomic_check)
- return priv->kms->funcs->atomic_check(priv->kms, state);
- return drm_atomic_helper_check(dev, state);
- }
- static const struct drm_mode_config_funcs mode_config_funcs = {
- .fb_create = msm_framebuffer_create,
- .output_poll_changed = msm_fb_output_poll_changed,
- .atomic_check = msm_atomic_check,
- .atomic_commit = msm_atomic_commit,
- .atomic_state_alloc = msm_atomic_state_alloc,
- .atomic_state_clear = msm_atomic_state_clear,
- .atomic_state_free = msm_atomic_state_free,
- };
- static const struct drm_mode_config_helper_funcs mode_config_helper_funcs = {
- .atomic_commit_tail = msm_atomic_commit_tail,
- };
- #ifdef CONFIG_DRM_MSM_REGISTER_LOGGING
- static bool reglog = false;
- MODULE_PARM_DESC(reglog, "Enable register read/write logging");
- module_param(reglog, bool, 0600);
- #else
- #define reglog 0
- #endif
- #ifdef CONFIG_DRM_FBDEV_EMULATION
- static bool fbdev = true;
- MODULE_PARM_DESC(fbdev, "Enable fbdev compat layer");
- module_param(fbdev, bool, 0600);
- #endif
- static char *vram = "16m";
- MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)");
- module_param(vram, charp, 0);
- bool dumpstate = false;
- MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors");
- module_param(dumpstate, bool, 0600);
- static bool modeset = true;
- MODULE_PARM_DESC(modeset, "Use kernel modesetting [KMS] (1=on (default), 0=disable)");
- module_param(modeset, bool, 0600);
- /*
- * Util/helpers:
- */
- int msm_clk_bulk_get(struct device *dev, struct clk_bulk_data **bulk)
- {
- struct property *prop;
- const char *name;
- struct clk_bulk_data *local;
- int i = 0, ret, count;
- count = of_property_count_strings(dev->of_node, "clock-names");
- if (count < 1)
- return 0;
- local = devm_kcalloc(dev, sizeof(struct clk_bulk_data *),
- count, GFP_KERNEL);
- if (!local)
- return -ENOMEM;
- of_property_for_each_string(dev->of_node, "clock-names", prop, name) {
- local[i].id = devm_kstrdup(dev, name, GFP_KERNEL);
- if (!local[i].id) {
- devm_kfree(dev, local);
- return -ENOMEM;
- }
- i++;
- }
- ret = devm_clk_bulk_get(dev, count, local);
- if (ret) {
- for (i = 0; i < count; i++)
- devm_kfree(dev, (void *) local[i].id);
- devm_kfree(dev, local);
- return ret;
- }
- *bulk = local;
- return count;
- }
- struct clk *msm_clk_bulk_get_clock(struct clk_bulk_data *bulk, int count,
- const char *name)
- {
- int i;
- char n[32];
- snprintf(n, sizeof(n), "%s_clk", name);
- for (i = 0; bulk && i < count; i++) {
- if (!strcmp(bulk[i].id, name) || !strcmp(bulk[i].id, n))
- return bulk[i].clk;
- }
- return NULL;
- }
- struct clk *msm_clk_get(struct platform_device *pdev, const char *name)
- {
- struct clk *clk;
- char name2[32];
- clk = devm_clk_get(&pdev->dev, name);
- if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
- return clk;
- snprintf(name2, sizeof(name2), "%s_clk", name);
- clk = devm_clk_get(&pdev->dev, name2);
- if (!IS_ERR(clk))
- dev_warn(&pdev->dev, "Using legacy clk name binding. Use "
- "\"%s\" instead of \"%s\"\n", name, name2);
- return clk;
- }
- void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
- const char *dbgname)
- {
- struct resource *res;
- unsigned long size;
- void __iomem *ptr;
- if (name)
- res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
- else
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!res) {
- dev_dbg(&pdev->dev, "failed to get memory resource: %s\n",
- name);
- return ERR_PTR(-EINVAL);
- }
- size = resource_size(res);
- ptr = devm_ioremap_nocache(&pdev->dev, res->start, size);
- if (!ptr) {
- dev_err(&pdev->dev, "failed to ioremap: %s\n", name);
- return ERR_PTR(-ENOMEM);
- }
- if (reglog)
- dev_dbg(&pdev->dev, "IO:region %s %pK %08lx\n",
- dbgname, ptr, size);
- return ptr;
- }
- unsigned long msm_iomap_size(struct platform_device *pdev, const char *name)
- {
- struct resource *res;
- if (name)
- res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
- else
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!res) {
- dev_dbg(&pdev->dev, "failed to get memory resource: %s\n",
- name);
- return 0;
- }
- return resource_size(res);
- }
- void msm_iounmap(struct platform_device *pdev, void __iomem *addr)
- {
- devm_iounmap(&pdev->dev, addr);
- }
- void msm_writel(u32 data, void __iomem *addr)
- {
- if (reglog)
- pr_debug("IO:W %pK %08x\n", addr, data);
- writel(data, addr);
- }
- u32 msm_readl(const void __iomem *addr)
- {
- u32 val = readl(addr);
- if (reglog)
- pr_err("IO:R %pK %08x\n", addr, val);
- return val;
- }
- struct vblank_work {
- struct kthread_work work;
- int crtc_id;
- bool enable;
- struct msm_drm_private *priv;
- };
- static void vblank_ctrl_worker(struct kthread_work *work)
- {
- struct vblank_work *cur_work = container_of(work,
- struct vblank_work, work);
- struct msm_drm_private *priv = cur_work->priv;
- struct msm_kms *kms = priv->kms;
- if (cur_work->enable)
- kms->funcs->enable_vblank(kms, priv->crtcs[cur_work->crtc_id]);
- else
- kms->funcs->disable_vblank(kms, priv->crtcs[cur_work->crtc_id]);
- kfree(cur_work);
- }
- static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
- int crtc_id, bool enable)
- {
- struct vblank_work *cur_work;
- if (!priv || crtc_id >= priv->num_crtcs)
- return -EINVAL;
- cur_work = kzalloc(sizeof(*cur_work), GFP_ATOMIC);
- if (!cur_work)
- return -ENOMEM;
- kthread_init_work(&cur_work->work, vblank_ctrl_worker);
- cur_work->crtc_id = crtc_id;
- cur_work->enable = enable;
- cur_work->priv = priv;
- kthread_queue_work(&priv->disp_thread[crtc_id].worker, &cur_work->work);
- return 0;
- }
- static int msm_drm_uninit(struct device *dev)
- {
- struct platform_device *pdev = to_platform_device(dev);
- struct drm_device *ddev = platform_get_drvdata(pdev);
- struct msm_drm_private *priv = ddev->dev_private;
- struct msm_kms *kms = priv->kms;
- int i;
- /* clean up display commit/event worker threads */
- for (i = 0; i < priv->num_crtcs; i++) {
- if (priv->disp_thread[i].thread) {
- kthread_flush_worker(&priv->disp_thread[i].worker);
- kthread_stop(priv->disp_thread[i].thread);
- priv->disp_thread[i].thread = NULL;
- }
- if (priv->event_thread[i].thread) {
- kthread_flush_worker(&priv->event_thread[i].worker);
- kthread_stop(priv->event_thread[i].thread);
- priv->event_thread[i].thread = NULL;
- }
- }
- drm_kms_helper_poll_fini(ddev);
- drm_mode_config_cleanup(ddev);
- if (priv->registered) {
- drm_dev_unregister(ddev);
- priv->registered = false;
- }
- #ifdef CONFIG_DRM_FBDEV_EMULATION
- if (fbdev && priv->fbdev)
- msm_fbdev_free(ddev);
- #endif
- drm_mode_config_cleanup(ddev);
- pm_runtime_get_sync(dev);
- drm_irq_uninstall(ddev);
- pm_runtime_put_sync(dev);
- flush_workqueue(priv->wq);
- destroy_workqueue(priv->wq);
- if (kms && kms->funcs)
- kms->funcs->destroy(kms);
- if (priv->vram.paddr) {
- unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING;
- drm_mm_takedown(&priv->vram.mm);
- dma_free_attrs(dev, priv->vram.size, NULL,
- priv->vram.paddr, attrs);
- }
- component_unbind_all(dev, ddev);
- sde_dbg_destroy();
- debugfs_remove_recursive(priv->debug_root);
- sde_power_resource_deinit(pdev, &priv->phandle);
- msm_mdss_destroy(ddev);
- ddev->dev_private = NULL;
- kfree(priv);
- drm_dev_put(ddev);
- return 0;
- }
- #define KMS_MDP4 4
- #define KMS_MDP5 5
- #define KMS_SDE 3
- static int get_mdp_ver(struct platform_device *pdev)
- {
- #ifdef CONFIG_OF
- static const struct of_device_id match_types[] = { {
- .compatible = "qcom,mdss_mdp",
- .data = (void *)KMS_MDP5,
- },
- {
- .compatible = "qcom,sde-kms",
- .data = (void *)KMS_SDE,
- },
- {},
- };
- struct device *dev = &pdev->dev;
- const struct of_device_id *match;
- match = of_match_node(match_types, dev->of_node);
- if (match)
- return (int)(unsigned long)match->data;
- #endif
- return KMS_MDP4;
- }
- static int msm_init_vram(struct drm_device *dev)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct device_node *node;
- unsigned long size = 0;
- int ret = 0;
- /* In the device-tree world, we could have a 'memory-region'
- * phandle, which gives us a link to our "vram". Allocating
- * is all nicely abstracted behind the dma api, but we need
- * to know the entire size to allocate it all in one go. There
- * are two cases:
- * 1) device with no IOMMU, in which case we need exclusive
- * access to a VRAM carveout big enough for all gpu
- * buffers
- * 2) device with IOMMU, but where the bootloader puts up
- * a splash screen. In this case, the VRAM carveout
- * need only be large enough for fbdev fb. But we need
- * exclusive access to the buffer to avoid the kernel
- * using those pages for other purposes (which appears
- * as corruption on screen before we have a chance to
- * load and do initial modeset)
- */
- node = of_parse_phandle(dev->dev->of_node, "memory-region", 0);
- if (node) {
- struct resource r;
- ret = of_address_to_resource(node, 0, &r);
- of_node_put(node);
- if (ret)
- return ret;
- size = r.end - r.start;
- DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
- /* if we have no IOMMU, then we need to use carveout allocator.
- * Grab the entire CMA chunk carved out in early startup in
- * mach-msm:
- */
- } else if (!iommu_present(&platform_bus_type)) {
- DRM_INFO("using %s VRAM carveout\n", vram);
- size = memparse(vram, NULL);
- }
- if (size) {
- unsigned long attrs = 0;
- void *p;
- priv->vram.size = size;
- drm_mm_init(&priv->vram.mm, 0, (size >> PAGE_SHIFT) - 1);
- spin_lock_init(&priv->vram.lock);
- attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
- attrs |= DMA_ATTR_WRITE_COMBINE;
- /* note that for no-kernel-mapping, the vaddr returned
- * is bogus, but non-null if allocation succeeded:
- */
- p = dma_alloc_attrs(dev->dev, size,
- &priv->vram.paddr, GFP_KERNEL, attrs);
- if (!p) {
- dev_err(dev->dev, "failed to allocate VRAM\n");
- priv->vram.paddr = 0;
- return -ENOMEM;
- }
- dev_info(dev->dev, "VRAM: %08x->%08x\n",
- (uint32_t)priv->vram.paddr,
- (uint32_t)(priv->vram.paddr + size));
- }
- return ret;
- }
- #ifdef CONFIG_OF
- static int msm_component_bind_all(struct device *dev,
- struct drm_device *drm_dev)
- {
- int ret;
- ret = component_bind_all(dev, drm_dev);
- if (ret)
- DRM_ERROR("component_bind_all failed: %d\n", ret);
- return ret;
- }
- #else
- static int msm_component_bind_all(struct device *dev,
- struct drm_device *drm_dev)
- {
- return 0;
- }
- #endif
- static int msm_drm_display_thread_create(struct sched_param param,
- struct msm_drm_private *priv, struct drm_device *ddev,
- struct device *dev)
- {
- int i, ret = 0;
- /**
- * this priority was found during empiric testing to have appropriate
- * realtime scheduling to process display updates and interact with
- * other real time and normal priority task
- */
- param.sched_priority = 16;
- for (i = 0; i < priv->num_crtcs; i++) {
- /* initialize display thread */
- priv->disp_thread[i].crtc_id = priv->crtcs[i]->base.id;
- kthread_init_worker(&priv->disp_thread[i].worker);
- priv->disp_thread[i].dev = ddev;
- priv->disp_thread[i].thread =
- kthread_run(kthread_worker_fn,
- &priv->disp_thread[i].worker,
- "crtc_commit:%d", priv->disp_thread[i].crtc_id);
- ret = sched_setscheduler(priv->disp_thread[i].thread,
- SCHED_FIFO, ¶m);
- if (ret)
- pr_warn("display thread priority update failed: %d\n",
- ret);
- if (IS_ERR(priv->disp_thread[i].thread)) {
- dev_err(dev, "failed to create crtc_commit kthread\n");
- priv->disp_thread[i].thread = NULL;
- }
- /* initialize event thread */
- priv->event_thread[i].crtc_id = priv->crtcs[i]->base.id;
- kthread_init_worker(&priv->event_thread[i].worker);
- priv->event_thread[i].dev = ddev;
- priv->event_thread[i].thread =
- kthread_run(kthread_worker_fn,
- &priv->event_thread[i].worker,
- "crtc_event:%d", priv->event_thread[i].crtc_id);
- /**
- * event thread should also run at same priority as disp_thread
- * because it is handling frame_done events. A lower priority
- * event thread and higher priority disp_thread can causes
- * frame_pending counters beyond 2. This can lead to commit
- * failure at crtc commit level.
- */
- ret = sched_setscheduler(priv->event_thread[i].thread,
- SCHED_FIFO, ¶m);
- if (ret)
- pr_warn("display event thread priority update failed: %d\n",
- ret);
- if (IS_ERR(priv->event_thread[i].thread)) {
- dev_err(dev, "failed to create crtc_event kthread\n");
- priv->event_thread[i].thread = NULL;
- }
- if ((!priv->disp_thread[i].thread) ||
- !priv->event_thread[i].thread) {
- /* clean up previously created threads if any */
- for ( ; i >= 0; i--) {
- if (priv->disp_thread[i].thread) {
- kthread_stop(
- priv->disp_thread[i].thread);
- priv->disp_thread[i].thread = NULL;
- }
- if (priv->event_thread[i].thread) {
- kthread_stop(
- priv->event_thread[i].thread);
- priv->event_thread[i].thread = NULL;
- }
- }
- return -EINVAL;
- }
- }
- /**
- * Since pp interrupt is heavy weight, try to queue the work
- * into a dedicated worker thread, so that they dont interrupt
- * other important events.
- */
- kthread_init_worker(&priv->pp_event_worker);
- priv->pp_event_thread = kthread_run(kthread_worker_fn,
- &priv->pp_event_worker, "pp_event");
- ret = sched_setscheduler(priv->pp_event_thread,
- SCHED_FIFO, ¶m);
- if (ret)
- pr_warn("pp_event thread priority update failed: %d\n",
- ret);
- if (IS_ERR(priv->pp_event_thread)) {
- dev_err(dev, "failed to create pp_event kthread\n");
- ret = PTR_ERR(priv->pp_event_thread);
- priv->pp_event_thread = NULL;
- return ret;
- }
- return 0;
- }
- static struct msm_kms *_msm_drm_init_helper(struct msm_drm_private *priv,
- struct drm_device *ddev, struct device *dev,
- struct platform_device *pdev)
- {
- int ret;
- struct msm_kms *kms;
- switch (get_mdp_ver(pdev)) {
- case KMS_MDP4:
- kms = mdp4_kms_init(ddev);
- break;
- case KMS_MDP5:
- kms = mdp5_kms_init(ddev);
- break;
- case KMS_SDE:
- kms = sde_kms_init(ddev);
- break;
- default:
- kms = ERR_PTR(-ENODEV);
- break;
- }
- if (IS_ERR_OR_NULL(kms)) {
- /*
- * NOTE: once we have GPU support, having no kms should not
- * be considered fatal.. ideally we would still support gpu
- * and (for example) use dmabuf/prime to share buffers with
- * imx drm driver on iMX5
- */
- dev_err(dev, "failed to load kms\n");
- return kms;
- }
- priv->kms = kms;
- pm_runtime_enable(dev);
- /**
- * Since kms->funcs->hw_init(kms) might call
- * drm_object_property_set_value to initialize some custom
- * properties we need to make sure mode_config.funcs are populated
- * beforehand to avoid dereferencing an unset value during the
- * drm_drv_uses_atomic_modeset check.
- */
- ddev->mode_config.funcs = &mode_config_funcs;
- ret = (kms)->funcs->hw_init(kms);
- if (ret) {
- dev_err(dev, "kms hw init failed: %d\n", ret);
- return ERR_PTR(ret);
- }
- return kms;
- }
- static int msm_drm_init(struct device *dev, struct drm_driver *drv)
- {
- struct platform_device *pdev = to_platform_device(dev);
- struct drm_device *ddev;
- struct msm_drm_private *priv;
- struct msm_kms *kms = NULL;
- int ret;
- struct sched_param param = { 0 };
- ddev = drm_dev_alloc(drv, dev);
- if (!ddev) {
- dev_err(dev, "failed to allocate drm_device\n");
- return -ENOMEM;
- }
- drm_mode_config_init(ddev);
- platform_set_drvdata(pdev, ddev);
- priv = kzalloc(sizeof(*priv), GFP_KERNEL);
- if (!priv) {
- ret = -ENOMEM;
- goto priv_alloc_fail;
- }
- ddev->dev_private = priv;
- priv->dev = ddev;
- ret = msm_mdss_init(ddev);
- if (ret)
- goto mdss_init_fail;
- priv->wq = alloc_ordered_workqueue("msm_drm", 0);
- init_waitqueue_head(&priv->pending_crtcs_event);
- INIT_LIST_HEAD(&priv->client_event_list);
- INIT_LIST_HEAD(&priv->inactive_list);
- ret = sde_power_resource_init(pdev, &priv->phandle);
- if (ret) {
- pr_err("sde power resource init failed\n");
- goto power_init_fail;
- }
- ret = sde_dbg_init(&pdev->dev);
- if (ret) {
- dev_err(dev, "failed to init sde dbg: %d\n", ret);
- goto dbg_init_fail;
- }
- /* Bind all our sub-components: */
- ret = msm_component_bind_all(dev, ddev);
- if (ret)
- goto bind_fail;
- ret = msm_init_vram(ddev);
- if (ret)
- goto fail;
- ddev->mode_config.funcs = &mode_config_funcs;
- ddev->mode_config.helper_private = &mode_config_helper_funcs;
- kms = _msm_drm_init_helper(priv, ddev, dev, pdev);
- if (IS_ERR_OR_NULL(kms)) {
- dev_err(dev, "msm_drm_init_helper failed\n");
- goto fail;
- }
- ret = msm_drm_display_thread_create(param, priv, ddev, dev);
- if (ret) {
- dev_err(dev, "msm_drm_display_thread_create failed\n");
- goto fail;
- }
- ret = drm_vblank_init(ddev, priv->num_crtcs);
- if (ret < 0) {
- dev_err(dev, "failed to initialize vblank\n");
- goto fail;
- }
- if (kms) {
- pm_runtime_get_sync(dev);
- ret = drm_irq_install(ddev, platform_get_irq(pdev, 0));
- pm_runtime_put_sync(dev);
- if (ret < 0) {
- dev_err(dev, "failed to install IRQ handler\n");
- goto fail;
- }
- }
- ret = drm_dev_register(ddev, 0);
- if (ret)
- goto fail;
- priv->registered = true;
- drm_mode_config_reset(ddev);
- if (kms && kms->funcs && kms->funcs->cont_splash_config) {
- ret = kms->funcs->cont_splash_config(kms);
- if (ret) {
- dev_err(dev, "kms cont_splash config failed.\n");
- goto fail;
- }
- }
- #ifdef CONFIG_DRM_FBDEV_EMULATION
- if (fbdev)
- priv->fbdev = msm_fbdev_init(ddev);
- #endif
- priv->debug_root = debugfs_create_dir("debug",
- ddev->primary->debugfs_root);
- if (IS_ERR_OR_NULL(priv->debug_root)) {
- pr_err("debugfs_root create_dir fail, error %ld\n",
- PTR_ERR(priv->debug_root));
- priv->debug_root = NULL;
- goto fail;
- }
- ret = sde_dbg_debugfs_register(priv->debug_root);
- if (ret) {
- dev_err(dev, "failed to reg sde dbg debugfs: %d\n", ret);
- goto fail;
- }
- /* perform subdriver post initialization */
- if (kms && kms->funcs && kms->funcs->postinit) {
- ret = kms->funcs->postinit(kms);
- if (ret) {
- pr_err("kms post init failed: %d\n", ret);
- goto fail;
- }
- }
- drm_kms_helper_poll_init(ddev);
- return 0;
- fail:
- msm_drm_uninit(dev);
- return ret;
- bind_fail:
- sde_dbg_destroy();
- dbg_init_fail:
- sde_power_resource_deinit(pdev, &priv->phandle);
- power_init_fail:
- msm_mdss_destroy(ddev);
- mdss_init_fail:
- kfree(priv);
- priv_alloc_fail:
- drm_dev_put(ddev);
- return ret;
- }
- /*
- * DRM operations:
- */
- static int context_init(struct drm_device *dev, struct drm_file *file)
- {
- struct msm_file_private *ctx;
- ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- mutex_init(&ctx->power_lock);
- file->driver_priv = ctx;
- if (dev && dev->dev_private) {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms;
- kms = priv->kms;
- if (kms && kms->funcs && kms->funcs->postopen)
- kms->funcs->postopen(kms, file);
- }
- return 0;
- }
- static int msm_open(struct drm_device *dev, struct drm_file *file)
- {
- return context_init(dev, file);
- }
- static void context_close(struct msm_file_private *ctx)
- {
- kfree(ctx);
- }
- static void msm_preclose(struct drm_device *dev, struct drm_file *file)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- if (kms && kms->funcs && kms->funcs->preclose)
- kms->funcs->preclose(kms, file);
- }
- static void msm_postclose(struct drm_device *dev, struct drm_file *file)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_file_private *ctx = file->driver_priv;
- struct msm_kms *kms = priv->kms;
- if (kms && kms->funcs && kms->funcs->postclose)
- kms->funcs->postclose(kms, file);
- mutex_lock(&dev->struct_mutex);
- if (ctx == priv->lastctx)
- priv->lastctx = NULL;
- mutex_unlock(&dev->struct_mutex);
- mutex_lock(&ctx->power_lock);
- if (ctx->enable_refcnt) {
- SDE_EVT32(ctx->enable_refcnt);
- pm_runtime_put_sync(dev->dev);
- }
- mutex_unlock(&ctx->power_lock);
- context_close(ctx);
- }
- static int msm_disable_all_modes_commit(
- struct drm_device *dev,
- struct drm_atomic_state *state)
- {
- struct drm_plane *plane;
- struct drm_crtc *crtc;
- unsigned int plane_mask;
- int ret;
- plane_mask = 0;
- drm_for_each_plane(plane, dev) {
- struct drm_plane_state *plane_state;
- plane_state = drm_atomic_get_plane_state(state, plane);
- if (IS_ERR(plane_state)) {
- ret = PTR_ERR(plane_state);
- goto fail;
- }
- plane_state->rotation = 0;
- plane->old_fb = plane->fb;
- plane_mask |= 1 << drm_plane_index(plane);
- /* disable non-primary: */
- if (plane->type == DRM_PLANE_TYPE_PRIMARY)
- continue;
- DRM_DEBUG("disabling plane %d\n", plane->base.id);
- ret = __drm_atomic_helper_disable_plane(plane, plane_state);
- if (ret != 0)
- DRM_ERROR("error %d disabling plane %d\n", ret,
- plane->base.id);
- }
- drm_for_each_crtc(crtc, dev) {
- struct drm_mode_set mode_set;
- memset(&mode_set, 0, sizeof(struct drm_mode_set));
- mode_set.crtc = crtc;
- DRM_DEBUG("disabling crtc %d\n", crtc->base.id);
- ret = __drm_atomic_helper_set_config(&mode_set, state);
- if (ret != 0)
- DRM_ERROR("error %d disabling crtc %d\n", ret,
- crtc->base.id);
- }
- DRM_DEBUG("committing disables\n");
- ret = drm_atomic_commit(state);
- fail:
- DRM_DEBUG("disables result %d\n", ret);
- return ret;
- }
- /**
- * msm_clear_all_modes - disables all planes and crtcs via an atomic commit
- * based on restore_fbdev_mode_atomic in drm_fb_helper.c
- * @dev: device pointer
- * @Return: 0 on success, otherwise -error
- */
- static int msm_disable_all_modes(
- struct drm_device *dev,
- struct drm_modeset_acquire_ctx *ctx)
- {
- struct drm_atomic_state *state;
- int ret, i;
- state = drm_atomic_state_alloc(dev);
- if (!state)
- return -ENOMEM;
- state->acquire_ctx = ctx;
- for (i = 0; i < TEARDOWN_DEADLOCK_RETRY_MAX; i++) {
- ret = msm_disable_all_modes_commit(dev, state);
- if (ret != -EDEADLK || ret != -ERESTARTSYS)
- break;
- drm_atomic_state_clear(state);
- drm_modeset_backoff(ctx);
- }
- drm_atomic_state_put(state);
- return ret;
- }
- static void msm_lastclose(struct drm_device *dev)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- struct drm_modeset_acquire_ctx ctx;
- int i, rc;
- /* check for splash status before triggering cleanup
- * if we end up here with splash status ON i.e before first
- * commit then ignore the last close call
- */
- if (kms && kms->funcs && kms->funcs->check_for_splash
- && kms->funcs->check_for_splash(kms))
- return;
- /*
- * clean up vblank disable immediately as this is the last close.
- */
- for (i = 0; i < dev->num_crtcs; i++) {
- struct drm_vblank_crtc *vblank = &dev->vblank[i];
- struct timer_list *disable_timer = &vblank->disable_timer;
- if (del_timer_sync(disable_timer))
- disable_timer->function(disable_timer);
- }
- /* wait for pending vblank requests to be executed by worker thread */
- flush_workqueue(priv->wq);
- if (priv->fbdev) {
- drm_fb_helper_restore_fbdev_mode_unlocked(priv->fbdev);
- return;
- }
- drm_modeset_acquire_init(&ctx, 0);
- retry:
- rc = drm_modeset_lock_all_ctx(dev, &ctx);
- if (rc)
- goto fail;
- rc = msm_disable_all_modes(dev, &ctx);
- if (rc)
- goto fail;
- if (kms && kms->funcs && kms->funcs->lastclose)
- kms->funcs->lastclose(kms, &ctx);
- fail:
- if (rc == -EDEADLK) {
- drm_modeset_backoff(&ctx);
- goto retry;
- } else if (rc) {
- pr_err("last close failed: %d\n", rc);
- }
- drm_modeset_drop_locks(&ctx);
- drm_modeset_acquire_fini(&ctx);
- }
- static irqreturn_t msm_irq(int irq, void *arg)
- {
- struct drm_device *dev = arg;
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- BUG_ON(!kms);
- return kms->funcs->irq(kms);
- }
- static void msm_irq_preinstall(struct drm_device *dev)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- BUG_ON(!kms);
- kms->funcs->irq_preinstall(kms);
- }
- static int msm_irq_postinstall(struct drm_device *dev)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- BUG_ON(!kms);
- return kms->funcs->irq_postinstall(kms);
- }
- static void msm_irq_uninstall(struct drm_device *dev)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- BUG_ON(!kms);
- kms->funcs->irq_uninstall(kms);
- }
- static int msm_enable_vblank(struct drm_device *dev, unsigned int pipe)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- if (!kms)
- return -ENXIO;
- DBG("dev=%pK, crtc=%u", dev, pipe);
- return vblank_ctrl_queue_work(priv, pipe, true);
- }
- static void msm_disable_vblank(struct drm_device *dev, unsigned int pipe)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- if (!kms)
- return;
- DBG("dev=%pK, crtc=%u", dev, pipe);
- vblank_ctrl_queue_work(priv, pipe, false);
- }
- /*
- * DRM ioctls:
- */
- static int msm_ioctl_gem_new(struct drm_device *dev, void *data,
- struct drm_file *file)
- {
- struct drm_msm_gem_new *args = data;
- if (args->flags & ~MSM_BO_FLAGS) {
- DRM_ERROR("invalid flags: %08x\n", args->flags);
- return -EINVAL;
- }
- return msm_gem_new_handle(dev, file, args->size,
- args->flags, &args->handle);
- }
- static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
- {
- return ktime_set(timeout.tv_sec, timeout.tv_nsec);
- }
- static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
- struct drm_file *file)
- {
- struct drm_msm_gem_cpu_prep *args = data;
- struct drm_gem_object *obj;
- ktime_t timeout = to_ktime(args->timeout);
- int ret;
- if (args->op & ~MSM_PREP_FLAGS) {
- DRM_ERROR("invalid op: %08x\n", args->op);
- return -EINVAL;
- }
- obj = drm_gem_object_lookup(file, args->handle);
- if (!obj)
- return -ENOENT;
- ret = msm_gem_cpu_prep(obj, args->op, &timeout);
- drm_gem_object_put_unlocked(obj);
- return ret;
- }
- static int msm_ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
- struct drm_file *file)
- {
- struct drm_msm_gem_cpu_fini *args = data;
- struct drm_gem_object *obj;
- int ret;
- obj = drm_gem_object_lookup(file, args->handle);
- if (!obj)
- return -ENOENT;
- ret = msm_gem_cpu_fini(obj);
- drm_gem_object_put_unlocked(obj);
- return ret;
- }
- static int msm_ioctl_gem_madvise(struct drm_device *dev, void *data,
- struct drm_file *file)
- {
- struct drm_msm_gem_madvise *args = data;
- struct drm_gem_object *obj;
- int ret;
- switch (args->madv) {
- case MSM_MADV_DONTNEED:
- case MSM_MADV_WILLNEED:
- break;
- default:
- return -EINVAL;
- }
- ret = mutex_lock_interruptible(&dev->struct_mutex);
- if (ret)
- return ret;
- obj = drm_gem_object_lookup(file, args->handle);
- if (!obj) {
- ret = -ENOENT;
- goto unlock;
- }
- ret = msm_gem_madvise(obj, args->madv);
- if (ret >= 0) {
- args->retained = ret;
- ret = 0;
- }
- drm_gem_object_put(obj);
- unlock:
- mutex_unlock(&dev->struct_mutex);
- return ret;
- }
- static int msm_drm_object_supports_event(struct drm_device *dev,
- struct drm_msm_event_req *req)
- {
- int ret = -EINVAL;
- struct drm_mode_object *arg_obj;
- arg_obj = drm_mode_object_find(dev, NULL, req->object_id,
- req->object_type);
- if (!arg_obj)
- return -ENOENT;
- switch (arg_obj->type) {
- case DRM_MODE_OBJECT_CRTC:
- case DRM_MODE_OBJECT_CONNECTOR:
- ret = 0;
- break;
- default:
- ret = -EOPNOTSUPP;
- break;
- }
- drm_mode_object_put(arg_obj);
- return ret;
- }
- static int msm_register_event(struct drm_device *dev,
- struct drm_msm_event_req *req, struct drm_file *file, bool en)
- {
- int ret = -EINVAL;
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- struct drm_mode_object *arg_obj;
- arg_obj = drm_mode_object_find(dev, file, req->object_id,
- req->object_type);
- if (!arg_obj)
- return -ENOENT;
- ret = kms->funcs->register_events(kms, arg_obj, req->event, en);
- drm_mode_object_put(arg_obj);
- return ret;
- }
- static int msm_event_client_count(struct drm_device *dev,
- struct drm_msm_event_req *req_event, bool locked)
- {
- struct msm_drm_private *priv = dev->dev_private;
- unsigned long flag = 0;
- struct msm_drm_event *node;
- int count = 0;
- if (!locked)
- spin_lock_irqsave(&dev->event_lock, flag);
- list_for_each_entry(node, &priv->client_event_list, base.link) {
- if (node->event.type == req_event->event &&
- node->info.object_id == req_event->object_id)
- count++;
- }
- if (!locked)
- spin_unlock_irqrestore(&dev->event_lock, flag);
- return count;
- }
- static int msm_ioctl_register_event(struct drm_device *dev, void *data,
- struct drm_file *file)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct drm_msm_event_req *req_event = data;
- struct msm_drm_event *client, *node;
- unsigned long flag = 0;
- bool dup_request = false;
- int ret = 0, count = 0;
- ret = msm_drm_object_supports_event(dev, req_event);
- if (ret) {
- DRM_ERROR("unsupported event %x object %x object id %d\n",
- req_event->event, req_event->object_type,
- req_event->object_id);
- return ret;
- }
- spin_lock_irqsave(&dev->event_lock, flag);
- list_for_each_entry(node, &priv->client_event_list, base.link) {
- if (node->base.file_priv != file)
- continue;
- if (node->event.type == req_event->event &&
- node->info.object_id == req_event->object_id) {
- DRM_DEBUG("duplicate request for event %x obj id %d\n",
- node->event.type, node->info.object_id);
- dup_request = true;
- break;
- }
- }
- spin_unlock_irqrestore(&dev->event_lock, flag);
- if (dup_request)
- return -EALREADY;
- client = kzalloc(sizeof(*client), GFP_KERNEL);
- if (!client)
- return -ENOMEM;
- client->base.file_priv = file;
- client->base.event = &client->event;
- client->event.type = req_event->event;
- memcpy(&client->info, req_event, sizeof(client->info));
- /* Get the count of clients that have registered for event.
- * Event should be enabled for first client, for subsequent enable
- * calls add to client list and return.
- */
- count = msm_event_client_count(dev, req_event, false);
- /* Add current client to list */
- spin_lock_irqsave(&dev->event_lock, flag);
- list_add_tail(&client->base.link, &priv->client_event_list);
- spin_unlock_irqrestore(&dev->event_lock, flag);
- if (count)
- return 0;
- ret = msm_register_event(dev, req_event, file, true);
- if (ret) {
- DRM_ERROR("failed to enable event %x object %x object id %d\n",
- req_event->event, req_event->object_type,
- req_event->object_id);
- spin_lock_irqsave(&dev->event_lock, flag);
- list_del(&client->base.link);
- spin_unlock_irqrestore(&dev->event_lock, flag);
- kfree(client);
- }
- return ret;
- }
- static int msm_ioctl_deregister_event(struct drm_device *dev, void *data,
- struct drm_file *file)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct drm_msm_event_req *req_event = data;
- struct msm_drm_event *client = NULL, *node, *temp;
- unsigned long flag = 0;
- int count = 0;
- bool found = false;
- int ret = 0;
- ret = msm_drm_object_supports_event(dev, req_event);
- if (ret) {
- DRM_ERROR("unsupported event %x object %x object id %d\n",
- req_event->event, req_event->object_type,
- req_event->object_id);
- return ret;
- }
- spin_lock_irqsave(&dev->event_lock, flag);
- list_for_each_entry_safe(node, temp, &priv->client_event_list,
- base.link) {
- if (node->event.type == req_event->event &&
- node->info.object_id == req_event->object_id &&
- node->base.file_priv == file) {
- client = node;
- list_del(&client->base.link);
- found = true;
- kfree(client);
- break;
- }
- }
- spin_unlock_irqrestore(&dev->event_lock, flag);
- if (!found)
- return -ENOENT;
- count = msm_event_client_count(dev, req_event, false);
- if (!count)
- ret = msm_register_event(dev, req_event, file, false);
- return ret;
- }
- void msm_mode_object_event_notify(struct drm_mode_object *obj,
- struct drm_device *dev, struct drm_event *event, u8 *payload)
- {
- struct msm_drm_private *priv = NULL;
- unsigned long flags;
- struct msm_drm_event *notify, *node;
- int len = 0, ret;
- if (!obj || !event || !event->length || !payload) {
- DRM_ERROR("err param obj %pK event %pK len %d payload %pK\n",
- obj, event, ((event) ? (event->length) : -1),
- payload);
- return;
- }
- priv = (dev) ? dev->dev_private : NULL;
- if (!dev || !priv) {
- DRM_ERROR("invalid dev %pK priv %pK\n", dev, priv);
- return;
- }
- spin_lock_irqsave(&dev->event_lock, flags);
- list_for_each_entry(node, &priv->client_event_list, base.link) {
- if (node->event.type != event->type ||
- obj->id != node->info.object_id)
- continue;
- len = event->length + sizeof(struct msm_drm_event);
- if (node->base.file_priv->event_space < len) {
- DRM_ERROR("Insufficient space %d for event %x len %d\n",
- node->base.file_priv->event_space, event->type,
- len);
- continue;
- }
- notify = kzalloc(len, GFP_ATOMIC);
- if (!notify)
- continue;
- notify->base.file_priv = node->base.file_priv;
- notify->base.event = ¬ify->event;
- notify->event.type = node->event.type;
- notify->event.length = event->length +
- sizeof(struct drm_msm_event_resp);
- memcpy(¬ify->info, &node->info, sizeof(notify->info));
- memcpy(notify->data, payload, event->length);
- ret = drm_event_reserve_init_locked(dev, node->base.file_priv,
- ¬ify->base, ¬ify->event);
- if (ret) {
- kfree(notify);
- continue;
- }
- drm_send_event_locked(dev, ¬ify->base);
- }
- spin_unlock_irqrestore(&dev->event_lock, flags);
- }
- static int msm_release(struct inode *inode, struct file *filp)
- {
- struct drm_file *file_priv = filp->private_data;
- struct drm_minor *minor = file_priv->minor;
- struct drm_device *dev = minor->dev;
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_drm_event *node, *temp, *tmp_node;
- u32 count;
- unsigned long flags;
- LIST_HEAD(tmp_head);
- spin_lock_irqsave(&dev->event_lock, flags);
- list_for_each_entry_safe(node, temp, &priv->client_event_list,
- base.link) {
- if (node->base.file_priv != file_priv)
- continue;
- list_del(&node->base.link);
- list_add_tail(&node->base.link, &tmp_head);
- }
- spin_unlock_irqrestore(&dev->event_lock, flags);
- list_for_each_entry_safe(node, temp, &tmp_head,
- base.link) {
- list_del(&node->base.link);
- count = msm_event_client_count(dev, &node->info, false);
- list_for_each_entry(tmp_node, &tmp_head, base.link) {
- if (tmp_node->event.type == node->info.event &&
- tmp_node->info.object_id ==
- node->info.object_id)
- count++;
- }
- if (!count)
- msm_register_event(dev, &node->info, file_priv, false);
- kfree(node);
- }
- return drm_release(inode, filp);
- }
- /**
- * msm_ioctl_rmfb2 - remove an FB from the configuration
- * @dev: drm device for the ioctl
- * @data: data pointer for the ioctl
- * @file_priv: drm file for the ioctl call
- *
- * Remove the FB specified by the user.
- *
- * Called by the user via ioctl.
- *
- * Returns:
- * Zero on success, negative errno on failure.
- */
- int msm_ioctl_rmfb2(struct drm_device *dev, void *data,
- struct drm_file *file_priv)
- {
- struct drm_framebuffer *fb = NULL;
- struct drm_framebuffer *fbl = NULL;
- uint32_t *id = data;
- int found = 0;
- if (!drm_core_check_feature(dev, DRIVER_MODESET))
- return -EINVAL;
- fb = drm_framebuffer_lookup(dev, file_priv, *id);
- if (!fb)
- return -ENOENT;
- /* drop extra ref from traversing drm_framebuffer_lookup */
- drm_framebuffer_put(fb);
- mutex_lock(&file_priv->fbs_lock);
- list_for_each_entry(fbl, &file_priv->fbs, filp_head)
- if (fb == fbl)
- found = 1;
- if (!found) {
- mutex_unlock(&file_priv->fbs_lock);
- return -ENOENT;
- }
- list_del_init(&fb->filp_head);
- mutex_unlock(&file_priv->fbs_lock);
- drm_framebuffer_put(fb);
- return 0;
- }
- EXPORT_SYMBOL(msm_ioctl_rmfb2);
- /**
- * msm_ioctl_power_ctrl - enable/disable power vote on MDSS Hw
- * @dev: drm device for the ioctl
- * @data: data pointer for the ioctl
- * @file_priv: drm file for the ioctl call
- *
- */
- int msm_ioctl_power_ctrl(struct drm_device *dev, void *data,
- struct drm_file *file_priv)
- {
- struct msm_file_private *ctx = file_priv->driver_priv;
- struct msm_drm_private *priv;
- struct drm_msm_power_ctrl *power_ctrl = data;
- bool vote_req = false;
- int old_cnt;
- int rc = 0;
- if (unlikely(!power_ctrl)) {
- DRM_ERROR("invalid ioctl data\n");
- return -EINVAL;
- }
- priv = dev->dev_private;
- mutex_lock(&ctx->power_lock);
- old_cnt = ctx->enable_refcnt;
- if (power_ctrl->enable) {
- if (!ctx->enable_refcnt)
- vote_req = true;
- ctx->enable_refcnt++;
- } else if (ctx->enable_refcnt) {
- ctx->enable_refcnt--;
- if (!ctx->enable_refcnt)
- vote_req = true;
- } else {
- pr_err("ignoring, unbalanced disable\n");
- }
- if (vote_req) {
- if (power_ctrl->enable)
- rc = pm_runtime_get_sync(dev->dev);
- else
- pm_runtime_put_sync(dev->dev);
- if (rc < 0)
- ctx->enable_refcnt = old_cnt;
- }
- pr_debug("pid %d enable %d, refcnt %d, vote_req %d\n",
- current->pid, power_ctrl->enable, ctx->enable_refcnt,
- vote_req);
- SDE_EVT32(current->pid, power_ctrl->enable, ctx->enable_refcnt,
- vote_req);
- mutex_unlock(&ctx->power_lock);
- return rc;
- }
- static const struct drm_ioctl_desc msm_ioctls[] = {
- DRM_IOCTL_DEF_DRV(MSM_GEM_NEW, msm_ioctl_gem_new, DRM_AUTH|DRM_RENDER_ALLOW),
- DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_AUTH|DRM_RENDER_ALLOW),
- DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_AUTH|DRM_RENDER_ALLOW),
- DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE, msm_ioctl_gem_madvise, DRM_AUTH|DRM_RENDER_ALLOW),
- DRM_IOCTL_DEF_DRV(SDE_WB_CONFIG, sde_wb_config, DRM_UNLOCKED|DRM_AUTH),
- DRM_IOCTL_DEF_DRV(MSM_REGISTER_EVENT, msm_ioctl_register_event,
- DRM_UNLOCKED),
- DRM_IOCTL_DEF_DRV(MSM_DEREGISTER_EVENT, msm_ioctl_deregister_event,
- DRM_UNLOCKED),
- DRM_IOCTL_DEF_DRV(MSM_RMFB2, msm_ioctl_rmfb2, DRM_UNLOCKED),
- DRM_IOCTL_DEF_DRV(MSM_POWER_CTRL, msm_ioctl_power_ctrl,
- DRM_RENDER_ALLOW),
- };
- static const struct vm_operations_struct vm_ops = {
- .fault = msm_gem_fault,
- .open = drm_gem_vm_open,
- .close = drm_gem_vm_close,
- };
- static const struct file_operations fops = {
- .owner = THIS_MODULE,
- .open = drm_open,
- .release = msm_release,
- .unlocked_ioctl = drm_ioctl,
- .compat_ioctl = drm_compat_ioctl,
- .poll = drm_poll,
- .read = drm_read,
- .llseek = no_llseek,
- .mmap = msm_gem_mmap,
- };
- static struct drm_driver msm_driver = {
- .driver_features = DRIVER_HAVE_IRQ |
- DRIVER_GEM |
- DRIVER_PRIME |
- DRIVER_RENDER |
- DRIVER_ATOMIC |
- DRIVER_MODESET,
- .open = msm_open,
- .preclose = msm_preclose,
- .postclose = msm_postclose,
- .lastclose = msm_lastclose,
- .irq_handler = msm_irq,
- .irq_preinstall = msm_irq_preinstall,
- .irq_postinstall = msm_irq_postinstall,
- .irq_uninstall = msm_irq_uninstall,
- .enable_vblank = msm_enable_vblank,
- .disable_vblank = msm_disable_vblank,
- .gem_free_object = msm_gem_free_object,
- .gem_vm_ops = &vm_ops,
- .dumb_create = msm_gem_dumb_create,
- .dumb_map_offset = msm_gem_dumb_map_offset,
- .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
- .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
- .gem_prime_export = drm_gem_prime_export,
- .gem_prime_import = msm_gem_prime_import,
- .gem_prime_res_obj = msm_gem_prime_res_obj,
- .gem_prime_pin = msm_gem_prime_pin,
- .gem_prime_unpin = msm_gem_prime_unpin,
- .gem_prime_get_sg_table = msm_gem_prime_get_sg_table,
- .gem_prime_import_sg_table = msm_gem_prime_import_sg_table,
- .gem_prime_vmap = msm_gem_prime_vmap,
- .gem_prime_vunmap = msm_gem_prime_vunmap,
- .gem_prime_mmap = msm_gem_prime_mmap,
- .ioctls = msm_ioctls,
- .num_ioctls = ARRAY_SIZE(msm_ioctls),
- .fops = &fops,
- .name = "msm_drm",
- .desc = "MSM Snapdragon DRM",
- .date = "20130625",
- .major = MSM_VERSION_MAJOR,
- .minor = MSM_VERSION_MINOR,
- .patchlevel = MSM_VERSION_PATCHLEVEL,
- };
- #ifdef CONFIG_PM_SLEEP
- static int msm_pm_suspend(struct device *dev)
- {
- struct drm_device *ddev;
- struct msm_drm_private *priv;
- struct msm_kms *kms;
- if (!dev)
- return -EINVAL;
- ddev = dev_get_drvdata(dev);
- if (!ddev || !ddev->dev_private)
- return -EINVAL;
- priv = ddev->dev_private;
- kms = priv->kms;
- if (kms && kms->funcs && kms->funcs->pm_suspend)
- return kms->funcs->pm_suspend(dev);
- /* disable hot-plug polling */
- drm_kms_helper_poll_disable(ddev);
- return 0;
- }
- static int msm_pm_resume(struct device *dev)
- {
- struct drm_device *ddev;
- struct msm_drm_private *priv;
- struct msm_kms *kms;
- if (!dev)
- return -EINVAL;
- ddev = dev_get_drvdata(dev);
- if (!ddev || !ddev->dev_private)
- return -EINVAL;
- priv = ddev->dev_private;
- kms = priv->kms;
- if (kms && kms->funcs && kms->funcs->pm_resume)
- return kms->funcs->pm_resume(dev);
- /* enable hot-plug polling */
- drm_kms_helper_poll_enable(ddev);
- return 0;
- }
- #endif
- #ifdef CONFIG_PM
- static int msm_runtime_suspend(struct device *dev)
- {
- struct drm_device *ddev = dev_get_drvdata(dev);
- struct msm_drm_private *priv = ddev->dev_private;
- DBG("");
- if (priv->mdss)
- msm_mdss_disable(priv->mdss);
- else
- sde_power_resource_enable(&priv->phandle, false);
- return 0;
- }
- static int msm_runtime_resume(struct device *dev)
- {
- struct drm_device *ddev = dev_get_drvdata(dev);
- struct msm_drm_private *priv = ddev->dev_private;
- int ret;
- DBG("");
- if (priv->mdss)
- ret = msm_mdss_enable(priv->mdss);
- else
- ret = sde_power_resource_enable(&priv->phandle, true);
- return ret;
- }
- #endif
- static const struct dev_pm_ops msm_pm_ops = {
- SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume)
- SET_RUNTIME_PM_OPS(msm_runtime_suspend, msm_runtime_resume, NULL)
- };
- /*
- * Componentized driver support:
- */
- /*
- * NOTE: duplication of the same code as exynos or imx (or probably any other).
- * so probably some room for some helpers
- */
- static int compare_of(struct device *dev, void *data)
- {
- return dev->of_node == data;
- }
- /*
- * Identify what components need to be added by parsing what remote-endpoints
- * our MDP output ports are connected to. In the case of LVDS on MDP4, there
- * is no external component that we need to add since LVDS is within MDP4
- * itself.
- */
- static int add_components_mdp(struct device *mdp_dev,
- struct component_match **matchptr)
- {
- struct device_node *np = mdp_dev->of_node;
- struct device_node *ep_node;
- struct device *master_dev;
- /*
- * on MDP4 based platforms, the MDP platform device is the component
- * master that adds other display interface components to itself.
- *
- * on MDP5 based platforms, the MDSS platform device is the component
- * master that adds MDP5 and other display interface components to
- * itself.
- */
- if (of_device_is_compatible(np, "qcom,mdp4"))
- master_dev = mdp_dev;
- else
- master_dev = mdp_dev->parent;
- for_each_endpoint_of_node(np, ep_node) {
- struct device_node *intf;
- struct of_endpoint ep;
- int ret;
- ret = of_graph_parse_endpoint(ep_node, &ep);
- if (ret) {
- dev_err(mdp_dev, "unable to parse port endpoint\n");
- of_node_put(ep_node);
- return ret;
- }
- /*
- * The LCDC/LVDS port on MDP4 is a speacial case where the
- * remote-endpoint isn't a component that we need to add
- */
- if (of_device_is_compatible(np, "qcom,mdp4") &&
- ep.port == 0)
- continue;
- /*
- * It's okay if some of the ports don't have a remote endpoint
- * specified. It just means that the port isn't connected to
- * any external interface.
- */
- intf = of_graph_get_remote_port_parent(ep_node);
- if (!intf)
- continue;
- drm_of_component_match_add(master_dev, matchptr, compare_of,
- intf);
- of_node_put(intf);
- }
- return 0;
- }
- static int compare_name_mdp(struct device *dev, void *data)
- {
- return (strnstr(dev_name(dev), "mdp", strlen("mdp")) != NULL);
- }
- static int add_display_components(struct device *dev,
- struct component_match **matchptr)
- {
- struct device *mdp_dev = NULL;
- struct device_node *node;
- int ret;
- if (of_device_is_compatible(dev->of_node, "qcom,sde-kms")) {
- struct device_node *np = dev->of_node;
- unsigned int i;
- for (i = 0; ; i++) {
- node = of_parse_phandle(np, "connectors", i);
- if (!node)
- break;
- component_match_add(dev, matchptr, compare_of, node);
- }
- return 0;
- }
- /*
- * MDP5 based devices don't have a flat hierarchy. There is a top level
- * parent: MDSS, and children: MDP5, DSI, HDMI, eDP etc. Populate the
- * children devices, find the MDP5 node, and then add the interfaces
- * to our components list.
- */
- if (of_device_is_compatible(dev->of_node, "qcom,mdss")) {
- ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
- if (ret) {
- dev_err(dev, "failed to populate children devices\n");
- return ret;
- }
- mdp_dev = device_find_child(dev, NULL, compare_name_mdp);
- if (!mdp_dev) {
- dev_err(dev, "failed to find MDSS MDP node\n");
- of_platform_depopulate(dev);
- return -ENODEV;
- }
- put_device(mdp_dev);
- /* add the MDP component itself */
- component_match_add(dev, matchptr, compare_of,
- mdp_dev->of_node);
- } else {
- /* MDP4 */
- mdp_dev = dev;
- }
- ret = add_components_mdp(mdp_dev, matchptr);
- if (ret)
- of_platform_depopulate(dev);
- return ret;
- }
- struct msm_gem_address_space *
- msm_gem_smmu_address_space_get(struct drm_device *dev,
- unsigned int domain)
- {
- struct msm_drm_private *priv = NULL;
- struct msm_kms *kms;
- const struct msm_kms_funcs *funcs;
- if ((!dev) || (!dev->dev_private))
- return NULL;
- priv = dev->dev_private;
- kms = priv->kms;
- if (!kms)
- return NULL;
- funcs = kms->funcs;
- if ((!funcs) || (!funcs->get_address_space))
- return NULL;
- return funcs->get_address_space(priv->kms, domain);
- }
- static int msm_drm_bind(struct device *dev)
- {
- return msm_drm_init(dev, &msm_driver);
- }
- static void msm_drm_unbind(struct device *dev)
- {
- msm_drm_uninit(dev);
- }
- static const struct component_master_ops msm_drm_ops = {
- .bind = msm_drm_bind,
- .unbind = msm_drm_unbind,
- };
- /*
- * Platform driver:
- */
- static int msm_pdev_probe(struct platform_device *pdev)
- {
- int ret;
- struct component_match *match = NULL;
- ret = add_display_components(&pdev->dev, &match);
- if (ret)
- return ret;
- pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
- return component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
- }
- static int msm_pdev_remove(struct platform_device *pdev)
- {
- component_master_del(&pdev->dev, &msm_drm_ops);
- of_platform_depopulate(&pdev->dev);
- msm_drm_unbind(&pdev->dev);
- component_master_del(&pdev->dev, &msm_drm_ops);
- return 0;
- }
- static void msm_pdev_shutdown(struct platform_device *pdev)
- {
- struct drm_device *ddev = platform_get_drvdata(pdev);
- struct msm_drm_private *priv = NULL;
- if (!ddev) {
- DRM_ERROR("invalid drm device node\n");
- return;
- }
- priv = ddev->dev_private;
- if (!priv) {
- DRM_ERROR("invalid msm drm private node\n");
- return;
- }
- msm_lastclose(ddev);
- /* set this after lastclose to allow kickoff from lastclose */
- priv->shutdown_in_progress = true;
- }
- static const struct of_device_id dt_match[] = {
- { .compatible = "qcom,mdp4", .data = (void *)KMS_MDP4 },
- { .compatible = "qcom,mdss", .data = (void *)KMS_MDP5 },
- { .compatible = "qcom,sde-kms", .data = (void *)KMS_SDE },
- {},
- };
- MODULE_DEVICE_TABLE(of, dt_match);
- static struct platform_driver msm_platform_driver = {
- .probe = msm_pdev_probe,
- .remove = msm_pdev_remove,
- .shutdown = msm_pdev_shutdown,
- .driver = {
- .name = "msm_drm",
- .of_match_table = dt_match,
- .pm = &msm_pm_ops,
- .suppress_bind_attrs = true,
- },
- };
- #ifdef CONFIG_QCOM_KGSL
- void __init adreno_register(void)
- {
- }
- void __exit adreno_unregister(void)
- {
- }
- #endif
- static int __init msm_drm_register(void)
- {
- if (!modeset)
- return -EINVAL;
- DBG("init");
- msm_smmu_driver_init();
- msm_dsi_register();
- msm_edp_register();
- msm_hdmi_register();
- adreno_register();
- return platform_driver_register(&msm_platform_driver);
- }
- static void __exit msm_drm_unregister(void)
- {
- DBG("fini");
- platform_driver_unregister(&msm_platform_driver);
- msm_hdmi_unregister();
- adreno_unregister();
- msm_edp_unregister();
- msm_dsi_unregister();
- msm_smmu_driver_cleanup();
- }
- module_init(msm_drm_register);
- module_exit(msm_drm_unregister);
- MODULE_AUTHOR("Rob Clark <[email protected]");
- MODULE_DESCRIPTION("MSM DRM Driver");
- MODULE_LICENSE("GPL");
|