Searched +full:mali +full:- +full:d71 (Results 1 – 4 of 4) sorted by relevance
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---5 $schema: http://devicetree.org/meta-schemas/core.yaml#10 - Liviu Dudau <Liviu.Dudau@arm.com>11 - Andre Przywara <andre.przywara@arm.com>14 The Arm Mali D71 display processor supports up to two displays with up21 - items:22 - const: arm,mali-d3223 - const: arm,mali-d7124 - const: arm,mali-d71[all …]
4 - compatible: Should be "arm,mali-d71"5 - reg: Physical base address and length of the registers in the system6 - interrupts: the interrupt line number of the device in the system7 - clocks: A list of phandle + clock-specifier pairs, one for each entry8 in 'clock-names'9 - clock-names: A list of clock names. It should contain:10 - "aclk": for the main processor clock11 - #address-cells: Must be 112 - #size-cells: Must be 013 - iommus: configure the stream id to IOMMU, Must be configured if want to[all …]
1 // SPDX-License-Identifier: GPL-2.027 return mdrv ? mdrv->mdev : NULL; in dev_to_mdev()32 struct device *dev = &pdev->dev; in komeda_platform_remove()35 komeda_kms_detach(mdrv->kms); in komeda_platform_remove()40 komeda_dev_suspend(mdrv->mdev); in komeda_platform_remove()42 komeda_dev_destroy(mdrv->mdev); in komeda_platform_remove()50 struct device *dev = &pdev->dev; in komeda_platform_probe()56 return -ENOMEM; in komeda_platform_probe()58 mdrv->mdev = komeda_dev_create(dev); in komeda_platform_probe()59 if (IS_ERR(mdrv->mdev)) { in komeda_platform_probe()[all …]
1 // SPDX-License-Identifier: GPL-2.025 return mdrv ? mdrv->mdev : NULL; in dev_to_mdev()35 komeda_kms_detach(mdrv->kms); in komeda_unbind()40 komeda_dev_suspend(mdrv->mdev); in komeda_unbind()42 komeda_dev_destroy(mdrv->mdev); in komeda_unbind()55 return -ENOMEM; in komeda_bind()57 mdrv->mdev = komeda_dev_create(dev); in komeda_bind()58 if (IS_ERR(mdrv->mdev)) { in komeda_bind()59 err = PTR_ERR(mdrv->mdev); in komeda_bind()65 komeda_dev_resume(mdrv->mdev); in komeda_bind()[all …]