embeddedsw
embeddedsw copied to clipboard
Xilinx Embedded Software (embeddedsw) Development
In the "/drivers/usbps/examples /xusbps_ch9.c" I found a few things that make my usb device fail the Chapter 9 tests, I would consider them bugs. Firstly, the endianess of the endpoint...
The commit ID 59f1dda4 "sw_apps :zynqmp_fsbl: Re-structured Xil_poll_timeout macro as XFsbl_PollTimeout function." changed a macro into a function. However one of the arguments to the macro was the condition which...
Hi, At [line 98](https://github.com/Xilinx/embeddedsw/blob/3728f546f178a1bcd91cf6efc9f8921447846cec/lib/sw_services/xilpki/src/xilpki.c#L98C55-L98C55) in xilpki.c: ``` #define PKI_ECC_NIST_P192_KEY_PRIV_GEN_CMD 0x00001701U #define PKI_ECC_NIST_P256_KEY_PRIV_GEN_CMD 0x00001F01U #define PKI_ECC_NIST_P384_KEY_PRIV_GEN_CMD 0x00002F02U #define PKI_ECC_NIST_P521_KEY_PRIV_GEN_CMD 0x00004101U ``` Shouldn't `PKI_ECC_NIST_P384_KEY_PRIV_GEN_CMD` be using the same 0x01 operation ID as...
In pciepsu.c line [795](https://github.com/Xilinx/embeddedsw/blob/3728f546f178a1bcd91cf6efc9f8921447846cec/XilinxProcessorIPLib/drivers/pciepsu/src/xpciepsu.c#L795C23-L795C23) : ``` static void XPciePsu_FetchDevicesInBus(XPciePsu *InstancePtr, u8 BusNum) { u32 ConfigData = 0; static u8 LastBusNum; [...] ``` LastBusNum is set to static, but there doesn't...
Most of the RFDC API is symmetric - for every Set(...) there is a corresponding Get(...) call. `XRFdc_SetDACVOP()` has no corresponding `XRFdc_GetDACVOP()` call. Please consider adding it.
In file _xqspipsu_generic_flash_polled_example.c_, in function _FlashEnterExit4BAddMode()_, under the _case SPANSION_ID_BYTE0:_ clause, the source code initializes _FlashMsg[1]_ only partially then somehow switches to _FlashMsg[2]_ even though the 3rd _FlashMsg_ isn't used:...
at the top I am guessing lines 38 - 44 are used to pull in information from the menu selections in the BSP settings menu. we were using f_puts and...
Hello, Commit [c3fde06710739985a11b9cf21138c17f1dcdf512 ](https://github.com/Xilinx/embeddedsw/commit/c3fde06710739985a11b9cf21138c17f1dcdf512) introduced a new bug in the DP 1.4 RX driver. ``` XDpRxSs_MCDP6000_ModifyRegister(DpRxSsPtr->IicPtr->BaseAddress, XDPRXSS_MCDP6000_IIC_SLAVE, 0x0A00, 0x55000000, 0x55000000); ``` The last parameter, the bit mask, should be 0xFF000000...
I have already configured zcu-102 and Linux system using uart16550 successfully. Now i wanted to connect them through PPPoS (Point to point Protocol over serial connection) from lwip202 library. But...
I discovered a very snicky and tricky race condition scenario when integrating tracealyzer code into our project. I suspect it might be a problem with other ports as well that...