Quantcast
Channel: Embedded Software (Read Only)
Viewing all 25965 articles
Browse latest View live

Forum Post: RE: Linux/AM5726: Changes required for eMMC part: MTFC4GACAANA-4MIT, SDK 4.0.0.4

$
0
0
[quote user="Patrick_W"]Our board is currently in layout. I noticed that for our design VCCQ on the eMMC module was tied to 1.8v. Our TI Sitara's Vddshv11 pin is tied to 3.3v and the pull up's for the MMC DAT/CLK/CMD lines are tied to 3.3 volts as well. It's my understanding that these all must use either 1.8 volts or 3.3 volts. They cannot use different voltages. Is this true?[/quote] Yes, all these (VCCQ, VDDSHV11, MMC pins) must be used either 1.8V or 3.3V, cannot use different voltages. Also eMMC reset input signal should match this voltage level. [quote user="Patrick_W"]Is it also true that the only way to use the eMMC's HS200 mode VCCQ/VDDSHV11/pull ups for MMC_DAT0-8/pull ups for MMC_CLK/pull ups for MMC_CMD must all use 1.8 volts?[/quote] Yes, HS200 mode needs 1.8V. AM572x TI EVM eMMC do not support HS200 mode, as it is configured for 3.3V only. DRA75x TI EVM eMMC support HS200 mode as its voltage can switch between 1.8V and 3.3V, you can check DRA75xTI EVM schematics: Regards, Pavel

Forum Post: RE: Linux/TAS2552SW-LINUX: How to use ALSA System on Chip (ASoC)

$
0
0
Klaus, This question seems specific for TAS2552 Amplifier. I would suggest you to ask/post in the Audio Amplifiers forum: e2e.ti.com/.../6 Regards, Pavel

Forum Post: RE: Linux: can't capture with Omap l138 , tvp5150 and vpif

$
0
0
thanks but i spent a lot of time on this kernel (about one month) can you guide me to find problem on this version? again thank you

Forum Post: Linux/AM5728: Build Yocto with processor SDK

$
0
0
Part Number: AM5728 Tool/software: Linux Hi , i have downloaded the ti-processor-sdk-linux-am57xx-evm-04.00.00.04-Linux-x86 SDK and installed the same. I would like to build yocto .So can you please share the steps to follow. i have tried to search "setup-yocto.sh" inside the bin folder which was there in earlier glsdk-6.10 but its not available in PSDK. Regards, Biswajit

Forum Post: RE: Linux/AM5728: Build Yocto with processor SDK

$
0
0
Hello Biswajit, You can find the Processor SDK 04.00.00.04 buld steps here . Best regards, Kemal

Forum Post: RE: Linux/PROCESSOR-SDK-AM335X: u-boot splash screen for am335x starter kit and beagle bone black with display 4d cape 43t LCD

$
0
0
hay bro i try tutorial from u but when i compiled the u-boot show error like this ../drivers/lcd/rasterDisplay.c: In function 'Lcd_Init': ../drivers/lcd/rasterDisplay.c:21:37: error: 'image1' undeclared (first use in this function) (unsigned int)image1, ^~~~~~ ../drivers/lcd/rasterDisplay.c:21:37: note: each undeclared identifier is reported only once for each function it appears in ../scripts/Makefile.build:280: recipe for target 'drivers/lcd/rasterDisplay.o' failed make[2]: *** [drivers/lcd/rasterDisplay.o] Error 1 /u-boot/Makefile:1214: recipe for target 'drivers/lcd' failed make[1]: *** [drivers/lcd] Error 2 make[1]: Leaving directory '/u-boot/am335x_evm' Makefile:149: recipe for target 'sub-make' failed make: *** [sub-make] Error 2 what must i do? please help :(

Forum Post: Linux/AM5728: About Processor SDK Supported Platforms

$
0
0
Part Number: AM5728 Tool/software: Linux Hi Champs, According to a AM57x Processor SDK page below, The supported EVM is only AM572x EVM. o PROCESSOR-SDK-LINUX-AM57X 04_01_00_06 ( software-dl.ti.com/.../index_FDS.html) On the other hand, in TI EP Wikipage below, the SDK supports AM572x EVM, AM572x IDK and AM571x IDK. o Processor SDK Supported Platforms and Versions ( processors.wiki.ti.com/.../Processor_SDK_Supported_Platforms_and_Versions) Could you please let me know which information is correct? Regards, j-breeze

Forum Post: RE: Linux/AM5728: About Processor SDK Supported Platforms

$
0
0
Hello, Please check these guides: processors.wiki.ti.com/.../Processor_SDK_Supported_Platforms_and_Versions processors.wiki.ti.com/.../Processor_SDK_Building_The_SDK table with Supported EVMs . Also you could check this thread there was similar question: e2e.ti.com/.../2216024 BR Margarita

Forum Post: RE: Linux/PROCESSOR-SDK-AM335X: u-boot splash screen for am335x starter kit and beagle bone black with display 4d cape 43t LCD

$
0
0
image1 is output of bmptoraster tool this you should include in your rasterDisplay.c

Forum Post: RE: Linux/AM5728: About Processor SDK Supported Platforms

$
0
0
Hi Margarita, Thank you for your prompt reply. I understand and I'd like to ask TI about the below ASAP. > > Could TI please update the TMDXIDK5718 page and the TI processor SDK pages to show that non-RT Linux SDK supports the 5718 IDK? > Regards, j-breeze

Forum Post: RE: Linux/PROCESSOR-SDK-AM335X: u-boot splash screen for am335x starter kit and beagle bone black with display 4d cape 43t LCD

$
0
0
like this? /** * \file rasterDisplay.c * * \brief Sample application for raster * */ #include "soc_AM335x.h" #include "evmskAM335x.h" #include "raster.h" #include "image.h" static void SetUpLCD(void); void Lcd_Init(void) { LCDBackLightEnable(); SetUpLCD(); RasterDMAFBConfig(SOC_LCDC_0_REGS, (unsigned int)image1, (unsigned int)image1 + sizeof(image1) - 2, 0); RasterDMAFBConfig(SOC_LCDC_0_REGS, (unsigned int)image1, (unsigned int)image1 + sizeof(image1) - 2, 1); RasterEnable(SOC_LCDC_0_REGS); }

Forum Post: RE: Linux/PROCESSOR-SDK-AM335X: u-boot splash screen for am335x starter kit and beagle bone black with display 4d cape 43t LCD

$
0
0
like this? /** * \file rasterDisplay.c * * \brief Sample application for raster * */ #include "soc_AM335x.h" #include "evmskAM335x.h" #include "raster.h" #include "image.h" static void SetUpLCD(void); void Lcd_Init(void) { LCDBackLightEnable(); SetUpLCD(); RasterDMAFBConfig(SOC_LCDC_0_REGS, (unsigned int)image1, (unsigned int)image1 + sizeof(image1) - 2, 0); RasterDMAFBConfig(SOC_LCDC_0_REGS, (unsigned int)image1, (unsigned int)image1 + sizeof(image1) - 2, 1); RasterEnable(SOC_LCDC_0_REGS); } i have done that...

Forum Post: RE: Linux: RTC wake-up from deepsleep mode: AM3358ZCZ ARM Cortex-A8 Processor

$
0
0
Can you also check if you can successfully enter into DeepSleep0 (mem) state, without using RTC as a wake-up source? Please have a try on your board: $ echo mem > /sys/power/state We need to check if the issue is related to RTC wakeup source or DeepSleep0 mode.

Forum Post: RE: Linux/AM5728: DSP Unload Failure on Processor SDK 04.00.00.04

$
0
0
[quote user="Rex Chang"] If I read it correctly, you use cmem block 0 for DSP1's FPGA buffer and block 1 for DSP2's FPGA buffer. Please refer to the post on July 6 in this thread, e2e.ti.com/.../604490 . The first 2 cmem blocks should be avoid. [/quote] We don't use OpenCL. We've been using the cmem configuration posted previously for all Processor SDK prior; is this some new requirement? Also, I see that there is now a 04.01 Processor SDK - would you expect better behavior for my issue with that version? Thanks

Forum Post: Linux/AM5728: omapdrm in linux am5728 c4.9

$
0
0
Part Number: AM5728 Tool/software: Linux Hello, We are using a custom board having AM5728 processor, The board has HDMI and RGB (through LVDS) interfaces. It works fine, if I use arago linux version of kernel 4.4. When I use 4.9 kernel, it doesn't work. # modetest trying to open device 'i915'...failed trying to open device 'radeon'...failed trying to open device 'nouveau'...failed trying to open device 'vmwgfx'...failed trying to open device 'omapdrm'...failed .... no device found I have grepped log for v. 4.9: # dmesg | grep drm [ 2.331052] [drm] Initialized [ 15.722112] [drm] Initialized pvr 1.14.3699939 20110701 on minor 0 In v. 4.4 it is: [ 1.876664] [drm] Initialized drm 1.1.0 20060810 [ 2.379288] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.379289] [drm] No driver support for vblank timestamp query. [ 2.383661] [drm] Enabling DMM ywrap scrolling [ 2.455023] omapdrm omapdrm.0: fb0: omapdrm frame buffer device [ 2.492277] [drm] Initialized omapdrm 1.0.0 20110917 on minor 0 [ 15.747378] [drm] Initialized pvr 1.14.3699939 20110701 on minor 1 omapdrm isn't initialized. CONFIG_DRM=y in the .config What is the doubt?

Forum Post: RE: Linux: RTC wake-up from deepsleep mode: AM3358ZCZ ARM Cortex-A8 Processor

$
0
0
echo mem > /sys/power/state looks fine. We can wake up it from serial connection, keypad, wifi module (it is designed this way). But RTC wake up is not working. RTC wakeup works for standby. wifi# echo mem > /sys/power/state [ 105.141091] PM: Syncing filesystems ... done. [ 108.838651] Freezing user space processes ... (elapsed 0.002 seconds) done. [ 108.852631] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done. [ 108.861965] Suspending console(s) (use no_console_suspend to debug) After pressing keyboard key over serial terminal (in 60 sec) [ 108.876766] queueing ieee80211 work while going to suspend [ 108.876986] queueing ieee80211 work while going to suspend [ 108.881450] ili9341: sleep [ 108.994958] ili9341: suspend [ 109.002940] PM: suspend of devices complete after 133.324 msecs [ 109.004446] PM: late suspend of devices complete after 1.468 msecs [ 109.006432] PM: noirq suspend of devices complete after 1.947 msecs [ 109.006443] PM: Successfully put all powerdomains to target state [ 109.008575] PM: noirq resume of devices complete after 1.961 msecs [ 109.009723] PM: early resume of devices complete after 0.936 msecs [ 109.018871] ili9341: unsleep [ 109.337752] ili9341: resume [ 109.384538] PM: resume of devices complete after 374.768 msecs [ 109.455272] Restarting tasks ... done.

Forum Post: RE: Linux/AM3354: AM3354:timer7:Unable to configure timer7 as PWM using the user space script or Kernel module

$
0
0
[quote user="Ravikumar G"]From the first link, the below node is mentioned to use timer7 as pwm. pwm7: dmtimer-pwm { compatible = "ti,omap-dmtimer-pwm"; ti,timers = ; #pwm-cells = ; }; From the above I did not understand where is "omap-dmtimer-pwm" driver in the SDK?. Blindly I have tried including the above node in my dts. But under /sys/class/pwm nothing got created.[/quote] This dmtimer pwm driver is available from PSDK v4.00 onwards (kernel 4.9.28). I would suggest you to switch to the latest PSDK v4.01 (kernel 4.9.41) or at least to PSDK v4.00 to be able to use that driver: {PSDK4.x}/board-support/linux-4.9.x/drivers/pwm/pwm-omap-dmtimer.c You should enable that driver through the menuconfig (CONFIG_PWM_OMAP_DMTIMER=y) as it is disabled by default in the am335x evm config file: {PSDK4.x}/board-support/linux-4.9.x/arch/arm/configs/tisdk_am335x-evm_defconfig Regards, Pavel

Forum Post: RE: Linux: am33xx, musb, cppi41 packet loss ?

$
0
0
Fred, [quote user="user5131608"]I have installed the SDK with a beaglebone black and the issue reproduced. The bbb kernel is 4.4.9-ti-r25.[/quote] Which SDK you have installed? Have you tried with AM335x PSDK 4.01 (kernel 4.9.41)? software-dl.ti.com/.../index_FDS.html

Forum Post: RE: Linux/BEAGLEBK: Troubles configuring SGX drivers to work correctly

$
0
0
I can run the OGLES2ChameleonMan example. What kind of OpenGL ES / EGL application you use?

Forum Post: RE: Linux/AM5728: omapdrm in linux am5728 c4.9

$
0
0
Hi, Please switch to latest TISDK04.01: www.ti.com/.../processor-sdk-am57x It uses kernel 4.9.41 and should support the drm on AM57xx devices. Best Regards, Yordan
Viewing all 25965 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>