mirror of
https://github.com/Freescale/meta-freescale-3rdparty.git
synced 2025-07-19 12:09:01 +02:00
linux-wandboard (3.0.35): remove recipe and associated files
Now that kernel 3.0.35 is no longer being updated, and that 3.10.17 is now GA and supports current GPU libraries, remove linux-wandboard (3.0.35). Signed-off-by: John Weber <rjohnweber@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
parent
ca8960094a
commit
0cc8736478
File diff suppressed because it is too large
Load Diff
|
@ -1,62 +0,0 @@
|
|||
From 2df4dba8faa9a781a5a1c6c09d646d2b692c9a0c Mon Sep 17 00:00:00 2001
|
||||
From: Loren Huang <b02279@freescale.com>
|
||||
Date: Tue, 4 Jun 2013 15:08:15 +0800
|
||||
Subject: [PATCH 2/6] ENGR00265465 gpu:Add global value for minimum 3D clock
|
||||
export
|
||||
|
||||
Add global value gpu3DMinClock so that minimum 3D clock can be change by user.
|
||||
When gpu min clock is too low, it may cause IPU starvation issue in certain case.
|
||||
Use echo x > /sys/module/galcore/parameters/gpu3DMinClock to change it.
|
||||
|
||||
Cherry-pick from 3.0.35 branch.
|
||||
|
||||
Upstream-Status: Backport [3.5.7-1.0.0]
|
||||
|
||||
Signed-off-by: Loren Huang <b02279@freescale.com>
|
||||
Acked-by: Lily Zhang
|
||||
---
|
||||
drivers/mxc/gpu-viv/arch/XAQ2/hal/kernel/gc_hal_kernel_hardware.c | 6 +++++-
|
||||
drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c | 3 +++
|
||||
2 files changed, 8 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/drivers/mxc/gpu-viv/arch/XAQ2/hal/kernel/gc_hal_kernel_hardware.c b/drivers/mxc/gpu-viv/arch/XAQ2/hal/kernel/gc_hal_kernel_hardware.c
|
||||
index 3829999..ebd36fe 100644
|
||||
--- a/drivers/mxc/gpu-viv/arch/XAQ2/hal/kernel/gc_hal_kernel_hardware.c
|
||||
+++ b/drivers/mxc/gpu-viv/arch/XAQ2/hal/kernel/gc_hal_kernel_hardware.c
|
||||
@@ -36,6 +36,7 @@ typedef struct _gcsiDEBUG_REGISTERS
|
||||
}
|
||||
gcsiDEBUG_REGISTERS;
|
||||
|
||||
+extern int gpu3DMinClock;
|
||||
/******************************************************************************\
|
||||
********************************* Support Code *********************************
|
||||
\******************************************************************************/
|
||||
@@ -4630,7 +4631,10 @@ gckHARDWARE_GetFscaleValue(
|
||||
)
|
||||
{
|
||||
*FscaleValue = Hardware->powerOnFscaleVal;
|
||||
- *MinFscaleValue = 1;
|
||||
+ if ((gpu3DMinClock > 0) && (gpu3DMinClock <= 64) && (Hardware->core == gcvCORE_MAJOR))
|
||||
+ *MinFscaleValue = gpu3DMinClock;
|
||||
+ else
|
||||
+ *MinFscaleValue = 1;
|
||||
*MaxFscaleValue = 64;
|
||||
|
||||
return gcvSTATUS_OK;
|
||||
diff --git a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
index 2ed3d0e..64cace1 100644
|
||||
--- a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
+++ b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
@@ -146,6 +146,9 @@ module_param(logFileSize,uint, 0644);
|
||||
static int showArgs = 0;
|
||||
module_param(showArgs, int, 0644);
|
||||
|
||||
+int gpu3DMinClock = 0;
|
||||
+module_param(gpu3DMinClock, int, 0644);
|
||||
+
|
||||
#if ENABLE_GPU_CLOCK_BY_DRIVER
|
||||
unsigned long coreClock = 156000000;
|
||||
module_param(coreClock, ulong, 0644);
|
||||
--
|
||||
1.8.3.2
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
From 1579de9397783ab5321c80f1e76661653ef38ccd Mon Sep 17 00:00:00 2001
|
||||
From: Robin Gong <b38343@freescale.com>
|
||||
Date: Thu, 9 May 2013 11:45:55 +0800
|
||||
Subject: [PATCH 3/6] ENGR00261814-4 gpu: use new PU power on/off interface
|
||||
|
||||
use new PU power on/off interface in GPU driver
|
||||
|
||||
Upstream-Status: Backport [3.5.7-1.0.0]
|
||||
|
||||
Signed-off-by: Robin Gong <b38343@freescale.com>
|
||||
Acked-by: Lily Zhang
|
||||
---
|
||||
.../mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c | 16 +++++++++++++---
|
||||
1 file changed, 13 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c
|
||||
index 9c2bae6..dfbc699 100644
|
||||
--- a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c
|
||||
+++ b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c
|
||||
@@ -6819,8 +6819,13 @@ gckOS_SetGPUPower(
|
||||
}
|
||||
if((Power == gcvTRUE) && (oldPowerState == gcvFALSE))
|
||||
{
|
||||
- if(!IS_ERR(Os->device->gpu_regulator))
|
||||
- regulator_enable(Os->device->gpu_regulator);
|
||||
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0)
|
||||
+ if(!IS_ERR(Os->device->gpu_regulator))
|
||||
+ regulator_enable(Os->device->gpu_regulator);
|
||||
+#else
|
||||
+ imx_gpc_power_up_pu(true);
|
||||
+#endif
|
||||
+
|
||||
#ifdef CONFIG_PM
|
||||
pm_runtime_get_sync(Os->device->pmdev);
|
||||
#endif
|
||||
@@ -6930,8 +6935,13 @@ gckOS_SetGPUPower(
|
||||
#ifdef CONFIG_PM
|
||||
pm_runtime_put_sync(Os->device->pmdev);
|
||||
#endif
|
||||
+
|
||||
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0)
|
||||
if(!IS_ERR(Os->device->gpu_regulator))
|
||||
- regulator_disable(Os->device->gpu_regulator);
|
||||
+ regulator_disable(Os->device->gpu_regulator);
|
||||
+#else
|
||||
+ imx_gpc_power_up_pu(false);
|
||||
+#endif
|
||||
}
|
||||
/* TODO: Put your code here. */
|
||||
gcmkFOOTER_NO();
|
||||
--
|
||||
1.8.3.2
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,61 +0,0 @@
|
|||
From a845abe4589366d3e37b5a646be6337984074b28 Mon Sep 17 00:00:00 2001
|
||||
From: Loren HUANG <b02279@freescale.com>
|
||||
Date: Wed, 22 May 2013 17:21:30 +0800
|
||||
Subject: [PATCH 5/6] ENGR00264275 [GPU]Correct suspend/resume calling after
|
||||
adding runtime pm.
|
||||
|
||||
After enabling runtime pm the suspend/resume entry is changed.
|
||||
|
||||
-Add new entry for suspend/resume in runtime pm frame work.
|
||||
-Add static define for all runtime pm function.
|
||||
|
||||
Upstream-Status: Backport [3.5.7-1.0.0]
|
||||
|
||||
Signed-off-by: Loren HUANG <b02279@freescale.com>
|
||||
Acked-by: Lily Zhang
|
||||
---
|
||||
.../gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c | 16 ++++++++++++++--
|
||||
1 file changed, 14 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
index 183000d..3632a6c 100644
|
||||
--- a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
+++ b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
@@ -1252,20 +1252,32 @@ static const struct of_device_id mxs_gpu_dt_ids[] = {
|
||||
MODULE_DEVICE_TABLE(of, mxs_gpu_dt_ids);
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
-int gpu_runtime_suspend(struct device *dev)
|
||||
+static int gpu_runtime_suspend(struct device *dev)
|
||||
{
|
||||
release_bus_freq(BUS_FREQ_HIGH);
|
||||
return 0;
|
||||
}
|
||||
|
||||
-int gpu_runtime_resume(struct device *dev)
|
||||
+static int gpu_runtime_resume(struct device *dev)
|
||||
{
|
||||
request_bus_freq(BUS_FREQ_HIGH);
|
||||
return 0;
|
||||
}
|
||||
|
||||
+static int gpu_system_suspend(struct device *dev)
|
||||
+{
|
||||
+ pm_message_t state={0};
|
||||
+ return gpu_suspend(to_platform_device(dev), state);
|
||||
+}
|
||||
+
|
||||
+static int gpu_system_resume(struct device *dev)
|
||||
+{
|
||||
+ return gpu_resume(to_platform_device(dev));
|
||||
+}
|
||||
+
|
||||
static const struct dev_pm_ops gpu_pm_ops = {
|
||||
SET_RUNTIME_PM_OPS(gpu_runtime_suspend, gpu_runtime_resume, NULL)
|
||||
+ SET_SYSTEM_SLEEP_PM_OPS(gpu_system_suspend, gpu_system_resume)
|
||||
};
|
||||
#endif
|
||||
#endif
|
||||
--
|
||||
1.8.3.2
|
||||
|
|
@ -1,60 +0,0 @@
|
|||
From 376d63e9b981118f83646a836ce6626e541de1a3 Mon Sep 17 00:00:00 2001
|
||||
From: Loren HUANG <b02279@freescale.com>
|
||||
Date: Fri, 31 May 2013 18:29:58 +0800
|
||||
Subject: [PATCH 6/6] ENGR00265130 gpu:Correct section mismatch in gpu kernel
|
||||
driver
|
||||
|
||||
-Remove the __devinit for suspend/resume function.
|
||||
-Replace __devinit to __devexit for remove function.
|
||||
|
||||
Upstream-Status: Backport [3.5.7-1.0.0]
|
||||
|
||||
Signed-off-by: Loren HUANG <b02279@freescale.com>
|
||||
Acked-by: Lily Zhang
|
||||
---
|
||||
drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
index 3632a6c..9d9dc57 100644
|
||||
--- a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
+++ b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_driver.c
|
||||
@@ -1111,7 +1111,7 @@ static int __devinit gpu_probe(struct platform_device *pdev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
-static int __devinit gpu_remove(struct platform_device *pdev)
|
||||
+static int __devexit gpu_remove(struct platform_device *pdev)
|
||||
{
|
||||
gcmkHEADER();
|
||||
#if gcdENABLE_FSCALE_VAL_ADJUST
|
||||
@@ -1123,7 +1123,7 @@ static int __devinit gpu_remove(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
-static int __devinit gpu_suspend(struct platform_device *dev, pm_message_t state)
|
||||
+static int gpu_suspend(struct platform_device *dev, pm_message_t state)
|
||||
{
|
||||
gceSTATUS status;
|
||||
gckGALDEVICE device;
|
||||
@@ -1173,7 +1173,7 @@ static int __devinit gpu_suspend(struct platform_device *dev, pm_message_t state
|
||||
return 0;
|
||||
}
|
||||
|
||||
-static int __devinit gpu_resume(struct platform_device *dev)
|
||||
+static int gpu_resume(struct platform_device *dev)
|
||||
{
|
||||
gceSTATUS status;
|
||||
gckGALDEVICE device;
|
||||
@@ -1284,7 +1284,7 @@ static const struct dev_pm_ops gpu_pm_ops = {
|
||||
|
||||
static struct platform_driver gpu_driver = {
|
||||
.probe = gpu_probe,
|
||||
- .remove = gpu_remove,
|
||||
+ .remove = __devexit_p(gpu_remove),
|
||||
|
||||
.suspend = gpu_suspend,
|
||||
.resume = gpu_resume,
|
||||
--
|
||||
1.8.3.2
|
||||
|
|
@ -1,242 +0,0 @@
|
|||
CONFIG_EXPERIMENTAL=y
|
||||
CONFIG_LOCALVERSION="-wandboard+yocto"
|
||||
CONFIG_DEFAULT_HOSTNAME="wandboard"
|
||||
# CONFIG_SWAP is not set
|
||||
CONFIG_SYSVIPC=y
|
||||
CONFIG_FHANDLE=y
|
||||
CONFIG_LOG_BUF_SHIFT=14
|
||||
CONFIG_CGROUPS=y
|
||||
CONFIG_BLK_DEV_INITRD=y
|
||||
CONFIG_EMBEDDED=y
|
||||
CONFIG_PERF_EVENTS=y
|
||||
# CONFIG_VM_EVENT_COUNTERS is not set
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_MODULE_FORCE_LOAD=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
CONFIG_ARCH_MXC=y
|
||||
CONFIG_ARCH_MX6=y
|
||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||
CONFIG_MACH_WANDBOARD=y
|
||||
CONFIG_EXPANSION_FWBADAPT=y
|
||||
CONFIG_IMX_PCIE=y
|
||||
CONFIG_USB_EHCI_ARC_H1=y
|
||||
CONFIG_USB_FSL_ARC_OTG=y
|
||||
CONFIG_CLK_DEBUG=y
|
||||
CONFIG_DMA_ZONE_SIZE=184
|
||||
CONFIG_ARM_THUMBEE=y
|
||||
# CONFIG_SWP_EMULATE is not set
|
||||
CONFIG_ARM_ERRATA_743622=y
|
||||
CONFIG_ARM_ERRATA_751472=y
|
||||
CONFIG_ARM_ERRATA_754322=y
|
||||
CONFIG_ARM_ERRATA_764369=y
|
||||
CONFIG_NO_HZ=y
|
||||
CONFIG_HIGH_RES_TIMERS=y
|
||||
CONFIG_SMP=y
|
||||
CONFIG_PREEMPT=y
|
||||
CONFIG_AEABI=y
|
||||
# CONFIG_OABI_COMPAT is not set
|
||||
CONFIG_HIGHMEM=y
|
||||
CONFIG_COMPACTION=y
|
||||
CONFIG_KSM=y
|
||||
CONFIG_ZBOOT_ROM_TEXT=0x0
|
||||
CONFIG_ZBOOT_ROM_BSS=0x0
|
||||
CONFIG_CMDLINE="noinitrd console=ttymxc0,115200"
|
||||
CONFIG_CPU_FREQ=y
|
||||
CONFIG_CPU_FREQ_STAT_DETAILS=y
|
||||
CONFIG_CPU_FREQ_DEFAULT_GOV_INTERACTIVE=y
|
||||
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
||||
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
|
||||
CONFIG_CPU_FREQ_GOV_USERSPACE=y
|
||||
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
|
||||
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
|
||||
CONFIG_CPU_FREQ_IMX=y
|
||||
CONFIG_VFP=y
|
||||
CONFIG_NEON=y
|
||||
CONFIG_PM_RUNTIME=y
|
||||
CONFIG_PM_DEBUG=y
|
||||
CONFIG_APM_EMULATION=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_UNIX=y
|
||||
CONFIG_INET=y
|
||||
CONFIG_IP_MULTICAST=y
|
||||
CONFIG_IP_PNP=y
|
||||
CONFIG_IP_PNP_DHCP=y
|
||||
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
|
||||
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
|
||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||
# CONFIG_INET_DIAG is not set
|
||||
# CONFIG_IPV6 is not set
|
||||
CONFIG_NETFILTER=y
|
||||
CONFIG_BT=y
|
||||
CONFIG_BT_L2CAP=y
|
||||
CONFIG_BT_SCO=y
|
||||
CONFIG_BT_RFCOMM=y
|
||||
CONFIG_BT_BNEP=y
|
||||
CONFIG_BT_BNEP_MC_FILTER=y
|
||||
CONFIG_BT_HIDP=y
|
||||
CONFIG_BT_HCIBTUSB=m
|
||||
CONFIG_BT_HCIUART=y
|
||||
CONFIG_BT_HCIUART_H4=y
|
||||
CONFIG_CFG80211=y
|
||||
# CONFIG_CFG80211_DEFAULT_PS is not set
|
||||
# CONFIG_WIRELESS_EXT_SYSFS is not set
|
||||
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
|
||||
CONFIG_DEVTMPFS=y
|
||||
CONFIG_DEVTMPFS_MOUNT=y
|
||||
CONFIG_CONNECTOR=y
|
||||
CONFIG_BLK_DEV_LOOP=y
|
||||
CONFIG_MISC_DEVICES=y
|
||||
# CONFIG_SCSI_PROC_FS is not set
|
||||
CONFIG_BLK_DEV_SD=y
|
||||
# CONFIG_SCSI_LOWLEVEL is not set
|
||||
CONFIG_ATA=y
|
||||
CONFIG_SATA_AHCI_PLATFORM=y
|
||||
# CONFIG_ATA_SFF is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_ETHERNET=y
|
||||
CONFIG_FEC_NAPI=y
|
||||
# CONFIG_NETDEV_1000 is not set
|
||||
# CONFIG_NETDEV_10000 is not set
|
||||
CONFIG_BRCMFMAC=m
|
||||
CONFIG_BRCMDBG=y
|
||||
CONFIG_HOSTAP=y
|
||||
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
|
||||
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
|
||||
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=720
|
||||
CONFIG_INPUT_EVDEV=y
|
||||
# CONFIG_INPUT_MOUSE is not set
|
||||
CONFIG_INPUT_TOUCHSCREEN=y
|
||||
CONFIG_TOUCHSCREEN_PRISM=y
|
||||
CONFIG_INPUT_MISC=y
|
||||
# CONFIG_SERIO_SERPORT is not set
|
||||
CONFIG_VT_HW_CONSOLE_BINDING=y
|
||||
CONFIG_SERIAL_IMX=y
|
||||
CONFIG_SERIAL_IMX_CONSOLE=y
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_MXS_VIIM=y
|
||||
CONFIG_I2C=y
|
||||
CONFIG_I2C_CHARDEV=y
|
||||
CONFIG_I2C_IMX=y
|
||||
CONFIG_SPI=y
|
||||
CONFIG_SPI_IMX=y
|
||||
CONFIG_GPIO_SYSFS=y
|
||||
# CONFIG_HWMON is not set
|
||||
CONFIG_WATCHDOG=y
|
||||
CONFIG_WATCHDOG_NOWAYOUT=y
|
||||
CONFIG_IMX2_WDT=y
|
||||
CONFIG_REGULATOR=y
|
||||
CONFIG_REGULATOR_DUMMY=y
|
||||
CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
||||
CONFIG_MEDIA_SUPPORT=y
|
||||
CONFIG_VIDEO_DEV=y
|
||||
# CONFIG_RC_CORE is not set
|
||||
# CONFIG_MEDIA_TUNER_CUSTOMISE is not set
|
||||
CONFIG_VIDEO_MXC_CAMERA=m
|
||||
CONFIG_MXC_CAMERA_OV5640_MIPI=m
|
||||
CONFIG_MXC_IPU_DEVICE_QUEUE_SDC=m
|
||||
CONFIG_USB_VIDEO_CLASS=m
|
||||
# CONFIG_USB_GSPCA is not set
|
||||
# CONFIG_RADIO_ADAPTERS is not set
|
||||
CONFIG_DRM=m
|
||||
CONFIG_DRM_VIVANTE=m
|
||||
CONFIG_FB=y
|
||||
CONFIG_FB_MXC_LDB=y
|
||||
CONFIG_FB_MXC_HDMI=y
|
||||
CONFIG_FRAMEBUFFER_CONSOLE=y
|
||||
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
|
||||
CONFIG_FONTS=y
|
||||
CONFIG_FONT_8x16=y
|
||||
CONFIG_FONT_10x18=y
|
||||
CONFIG_SOUND=y
|
||||
CONFIG_SND=y
|
||||
# CONFIG_SND_DRIVERS is not set
|
||||
# CONFIG_SND_PCI is not set
|
||||
CONFIG_SND_USB_AUDIO=y
|
||||
CONFIG_SND_SOC=y
|
||||
CONFIG_SND_IMX_SOC=y
|
||||
CONFIG_SND_SOC_IMX_SGTL5000=y
|
||||
CONFIG_SND_SOC_IMX_SPDIF=y
|
||||
CONFIG_SND_SOC_IMX_HDMI=y
|
||||
CONFIG_HIDRAW=y
|
||||
CONFIG_USB=y
|
||||
CONFIG_USB_DEVICEFS=y
|
||||
# CONFIG_USB_DEVICE_CLASS is not set
|
||||
CONFIG_USB_EHCI_HCD=y
|
||||
CONFIG_USB_EHCI_ARC=y
|
||||
CONFIG_USB_EHCI_ROOT_HUB_TT=y
|
||||
CONFIG_USB_ACM=m
|
||||
CONFIG_USB_STORAGE=y
|
||||
CONFIG_USB_GADGET=y
|
||||
CONFIG_USB_GADGET_VBUS_DRAW=100
|
||||
CONFIG_USB_ETH=m
|
||||
CONFIG_USB_FILE_STORAGE=m
|
||||
CONFIG_USB_MASS_STORAGE=m
|
||||
CONFIG_USB_G_SERIAL=m
|
||||
CONFIG_USB_CDC_COMPOSITE=m
|
||||
CONFIG_USB_GPIO_VBUS=y
|
||||
CONFIG_USB_ULPI=y
|
||||
CONFIG_MMC=y
|
||||
CONFIG_MMC_UNSAFE_RESUME=y
|
||||
CONFIG_MMC_CLKGATE=y
|
||||
CONFIG_MMC_SDHCI=y
|
||||
CONFIG_MMC_SDHCI_PLTFM=y
|
||||
CONFIG_MMC_SDHCI_ESDHC_IMX=y
|
||||
CONFIG_RTC_CLASS=y
|
||||
CONFIG_RTC_DRV_SNVS=y
|
||||
CONFIG_DMADEVICES=y
|
||||
CONFIG_MXC_PXP_V2=y
|
||||
CONFIG_IMX_SDMA=y
|
||||
CONFIG_MXC_IPU=y
|
||||
CONFIG_MXC_SSI=y
|
||||
# CONFIG_MXC_HMP4E is not set
|
||||
# CONFIG_MXC_HWEVENT is not set
|
||||
CONFIG_MXC_ASRC=y
|
||||
CONFIG_MXC_GPU_VIV=y
|
||||
CONFIG_MXC_MIPI_CSI2=y
|
||||
CONFIG_EXT2_FS=y
|
||||
CONFIG_EXT3_FS=y
|
||||
# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set
|
||||
CONFIG_EXT4_FS=y
|
||||
CONFIG_AUTOFS4_FS=m
|
||||
CONFIG_MSDOS_FS=y
|
||||
CONFIG_VFAT_FS=y
|
||||
CONFIG_TMPFS=y
|
||||
# CONFIG_MISC_FILESYSTEMS is not set
|
||||
CONFIG_NFS_FS=y
|
||||
CONFIG_NFS_V3=y
|
||||
CONFIG_NFS_V4=y
|
||||
CONFIG_NFS_V4_1=y
|
||||
CONFIG_ROOT_NFS=y
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
CONFIG_EFI_PARTITION=y
|
||||
CONFIG_NLS_CODEPAGE_437=y
|
||||
CONFIG_NLS_ASCII=y
|
||||
CONFIG_NLS_ISO8859_1=y
|
||||
CONFIG_NLS_UTF8=y
|
||||
CONFIG_PRINTK_TIME=y
|
||||
CONFIG_FRAME_WARN=4096
|
||||
CONFIG_MAGIC_SYSRQ=y
|
||||
CONFIG_DEBUG_FS=y
|
||||
CONFIG_SYSCTL_SYSCALL_CHECK=y
|
||||
# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
|
||||
CONFIG_CRYPTO_TEST=m
|
||||
CONFIG_CRYPTO_CCM=y
|
||||
CONFIG_CRYPTO_GCM=y
|
||||
CONFIG_CRYPTO_CBC=y
|
||||
CONFIG_CRYPTO_CTS=y
|
||||
CONFIG_CRYPTO_LRW=y
|
||||
CONFIG_CRYPTO_PCBC=y
|
||||
CONFIG_CRYPTO_XTS=y
|
||||
CONFIG_CRYPTO_DES=y
|
||||
CONFIG_CRYPTO_DEFLATE=y
|
||||
CONFIG_CRYPTO_LZO=y
|
||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||
CONFIG_CRYPTO_DEV_FSL_CAAM=y
|
||||
CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y
|
||||
CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=y
|
||||
CONFIG_CRYPTO_DEV_FSL_CAAM_SECVIO=y
|
||||
CONFIG_CRC_CCITT=m
|
||||
CONFIG_AVERAGE=y
|
|
@ -1,31 +0,0 @@
|
|||
From b37a944f55a5010bd08297a63db0275540922f32 Mon Sep 17 00:00:00 2001
|
||||
From: Otavio Salvador <otavio@ossystems.com.br>
|
||||
Date: Thu, 22 Aug 2013 16:31:29 -0300
|
||||
Subject: [PATCH] drm/vivante: Add ":00" sufix in returned bus Id
|
||||
|
||||
This makes the 3.0.35 compatible with a Xorg driver build for 3.5.7 or
|
||||
newer kernels.
|
||||
|
||||
Upstream-Status: Inapropriate [embedded specific]
|
||||
|
||||
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
||||
---
|
||||
drivers/gpu/drm/vivante/vivante_drv.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/drivers/gpu/drm/vivante/vivante_drv.c b/drivers/gpu/drm/vivante/vivante_drv.c
|
||||
index 4224608..cea360d 100644
|
||||
--- a/drivers/gpu/drm/vivante/vivante_drv.c
|
||||
+++ b/drivers/gpu/drm/vivante/vivante_drv.c
|
||||
@@ -55,7 +55,7 @@
|
||||
|
||||
#include "drm_pciids.h"
|
||||
|
||||
-static char platformdevicename[] = "Vivante GCCore";
|
||||
+static char platformdevicename[] = "Vivante GCCore:00";
|
||||
static struct platform_device *pplatformdev;
|
||||
|
||||
static struct drm_driver driver = {
|
||||
--
|
||||
1.8.4.rc1
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
# adapted from linux-imx.inc, copyright (C) 2012-2013 O.S. Systems Software LTDA
|
||||
# Released under the MIT license (see COPYING.MIT for the terms)
|
||||
|
||||
include linux-wandboard.inc
|
||||
|
||||
# Wandboard branch - based on 4.0.0 from Freescale git
|
||||
SRCBRANCH = "wandboard_imx_3.0.35_4.0.0"
|
||||
SRCREV = "d35902c77a077a25e4dfedc6aac11ba49c52c586"
|
||||
LOCALVERSION = "-4.0.0-wandboard"
|
||||
|
||||
# GPU support patches
|
||||
SRC_URI += "file://drm-vivante-Add-00-sufix-in-returned-bus-Id.patch \
|
||||
file://0001-ENGR00255688-4.6.9p11.1-gpu-GPU-Kernel-driver-integr.patch \
|
||||
file://0002-ENGR00265465-gpu-Add-global-value-for-minimum-3D-clo.patch \
|
||||
file://0003-ENGR00261814-4-gpu-use-new-PU-power-on-off-interface.patch \
|
||||
file://0004-ENGR00264288-1-GPU-Integrate-4.6.9p12-release-kernel.patch \
|
||||
file://0005-ENGR00264275-GPU-Correct-suspend-resume-calling-afte.patch \
|
||||
file://0006-ENGR00265130-gpu-Correct-section-mismatch-in-gpu-ker.patch"
|
||||
|
||||
COMPATIBLE_MACHINE = "(wandboard)"
|
Loading…
Reference in New Issue
Block a user