Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for uncheck "Enable DDR" in Vivado. #94

Open
wants to merge 3,957 commits into
base: master
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jun 5, 2019

  1. sw_apps:versal_plm: Correct initialization of image id for PLM CDO

    Pass subsystem id instead of index
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series: Rajan Vaja <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e67183e View commit details
    Browse the repository at this point in the history
  2. xillibpm: add support for subsystem id passed by PLM

    Use subsystem id passed by PLM for CDO commands
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series: Rajan Vaja <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b86efad View commit details
    Browse the repository at this point in the history
  3. v_hdmiphy1: Updates for Versal GTYE5

    Added routines within pre-processor directives to for GTYE5 flow.
    Removed ERR_IRQ from the driver.
    
    Signed-off-by: Eric Bong <[email protected]>
    Acked-by: Gilbert Magnaye <[email protected]>
    
    Acked-by: Gilbert Magnaye <[email protected]>
    Eric Bong authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e627846 View commit details
    Browse the repository at this point in the history
  4. usbpsu: examples: Update index and readme files

    This patch updates the index.html and readme.txt files
    with the information related to newly supported example
    drivers
    
    Signed-off-by: Anurag Kumar Vulisha <[email protected]>
    Anurag Kumar Vulisha authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    71270ec View commit details
    Browse the repository at this point in the history
  5. wdttb:examples:Added versal support

    Updated xwdttb_selftest_example.c & xwdttb_winwdt_example.c files with versal support.
    Added xwdttb_gwdt_selftest_example.c & xwdttb_gwdt_example.c examples for Versal.
    
    Signed-off-by: Srinivas Neeli <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    Srinivas Neeli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4d9e6a4 View commit details
    Browse the repository at this point in the history
  6. freertos10_xilinx: Add support for hard float in R5 freertos port

    Existing R5 freertos port does not have support for hard float.
    
    Signed-off-by: Anirudha Sarangi <[email protected]>
    Anirudha Sarangi authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e181d93 View commit details
    Browse the repository at this point in the history
  7. sw_services :xilloader: variable used before assignment.

    This patch fix MISRA-C mandatory violations in below files.
    69D
    Variable used before assignment
    MISRA-C:2012/AMD1/ADD2: R.9.1
    
    Signed-off-by: Sivaji Boddupilli <[email protected]>
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    Sivaji Boddupilli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    51f5aaf View commit details
    Browse the repository at this point in the history
  8. sw_apps: zynqmp_fsbl: Select EEPROM Lower Page for reading SPD data

    By default this was taking lower page only, but for soft reset usecases,
    the DDR initialization was failing due to incorrect SPD data being
    read from EEPROM. This patch fixes the same.
    
    Signed-off-by: Manish Narani <[email protected]>
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    mnarani authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    365bbe9 View commit details
    Browse the repository at this point in the history
  9. lwip211: Fix BYTE_ORDER redefined warning

    BYTE_ORDER is defined in microblaze compiler header so we get a warning
    when it's redefined in lwip arch/cpu.h. To address it add a check before
    redefining it. Fixes below compiler warning.
    
    ../../../include/arch/cpu.h:41: warning: "BYTE_ORDER" redefined
    In file included from /include/sys/types.h:67,
                     from /include/stdio.h:61,
                     from contrib/ports/xilinx/netif/xemacliteif.c:47:
    <install_path>/microblaze-xilinx-elf/include/machine/endian.h:20: note:
    this is the location of the previous definition
    
    Signed-off-by: Radhey Shyam Pandey <[email protected]>
    
    Acked-for-series: Harini Katakam <[email protected]>
    radheyxilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6f6e8e5 View commit details
    Browse the repository at this point in the history
  10. lwip211: Fix gcc warnings in emaclite adapter source

    Remove unused variables and also make IP address parameter constant in
    line with the output function type definition. Fixes below gcc warnings-
    
    xemacliteif.c: In function 'configure_IEEE_phy_speed_emaclite':
    xemacliteif.c:769:6: warning: unused variable 'phylinkspeed' [-Wunused-variable]
      u16 phylinkspeed;
          ^~~~~~~~~~~~
    xemacliteif.c:768:6: warning: unused variable 'status' [-Wunused-variable]
      u16 status;
          ^~~~~~
    xemacliteif.c: In function 'xemacliteif_init':
    xemacliteif.c:842:16: warning: assignment to 'netif_output_fn' {aka 'signed char
    (*)(struct netif *, struct pbuf *, const struct ip4_addr *)'} from incompatible
     pointer type 'err_t (*)(struct netif *, struct pbuf *, ip_addr_t *)' {aka
     'signed char (*)(struct netif *, struct pbuf *, struct ip4_addr *)'}
     [-Wincompatible-pointer-types]
      netif->output = xemacliteif_output;
    
    Signed-off-by: Radhey Shyam Pandey <[email protected]>
    
    Acked-for-series: Harini Katakam <[email protected]>
    radheyxilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    93c75e7 View commit details
    Browse the repository at this point in the history
  11. lwip211: Fix emaclite xemacliteif_input freertos implementation

    For freertos configuration, when the multiple packets arrive at the same
    time binary semaphore sem_rx_data_available is incremented/signaled only
    once. So to ensure that all packets are received before next semaphore
    event loop through low_level_input().
    
    Signed-off-by: Radhey Shyam Pandey <[email protected]>
    
    Acked-for-series: Harini Katakam <[email protected]>
    radheyxilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    9716a5a View commit details
    Browse the repository at this point in the history
  12. sw_apps :versal_pmcfw: Fix bug in ScanClearPass function

    Return 0 when NOC_TYPE1_NCR bit is set to 0, else return 1;
    
    Signed-off-by: Vikram Sreenivasa Batchali <[email protected]>
    Acked-by: Mounika Grace Akula <[email protected]>
    
    Acked-by: Mounika Grace Akula <[email protected]>
    [email protected] authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e611bf9 View commit details
    Browse the repository at this point in the history
  13. sw_apps :versal_plm: Variable used before assignment.

    This patch fix MISRA-C violations in below files.
    69D
    Variable used before assignment
    MISRA-C:2012/AMD1/ADD2: R.9.1
    
    Signed-off-by: Sivaji Boddupilli <[email protected]>
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    Sivaji Boddupilli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ea498b4 View commit details
    Browse the repository at this point in the history
  14. sw_services :xilpdi: variable used before assignment.

    This patch fix MISRA-C mandatory violations in below files.
    69D
    Variable used before assignment
    MISRA-C:2012/AMD1/ADD2: R.9.1
    
    Signed-off-by: Sivaji Boddupilli <[email protected]>
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    Sivaji Boddupilli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    14c81d1 View commit details
    Browse the repository at this point in the history
  15. Add support for versal IP naming

    This patch adds the support for modified versal IP names
    for canfd, spips, ospipsv, qspipsu, uartsbsa, iicps.
    
    Signed-off-by: Naga Sureshkumar Relli <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    Naga Sureshkumar Relli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    2e1f818 View commit details
    Browse the repository at this point in the history
  16. cfupmc: Add support for psv_pmc_cfu_apb IP name

    Add support for versal IP name.
    
    Signed-off-by: Nava kishore Manne <[email protected]>
    Acked-by: Appana Durga Kedareswara rao <[email protected]>
    
    Acked-by: Appana Durga Kedareswara rao <[email protected]>
    Nava kishore Manne authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    f0250b7 View commit details
    Browse the repository at this point in the history
  17. cframe: Add support for psv_pmc_cfi_cframe IP name

    Add support for versal IP name.
    
    Signed-off-by: Nava kishore Manne <[email protected]>
    Acked-by: Appana Durga Kedareswara rao <[email protected]>
    
    Acked-by: Appana Durga Kedareswara rao <[email protected]>
    Nava kishore Manne authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    a8d964f View commit details
    Browse the repository at this point in the history
  18. sysmonpsv: Macro to return interrup ALARM mask

    The macro returns the ALARM flag needed for a
    particular supply
    
    Signed-off-by: Anand Ashok Dumbre <[email protected]>
    
    Acked-for-series: Conall O'Griofa <[email protected]>
    Anand Ashok Dumbre authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5560b7b View commit details
    Browse the repository at this point in the history
  19. sysmonpsv: API to set Supply for a New Data interrupt

    Added API to be able to set a particular supply to
    a New Data interrupt
    
    Signed-off-by: Anand Ashok Dumbre <[email protected]>
    
    Acked-for-series: Conall O'Griofa <[email protected]>
    Anand Ashok Dumbre authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0bbd069 View commit details
    Browse the repository at this point in the history
  20. xillibpm: Extern C added to header files

    Added extern C to all header files to enable compilation in C++
    
    Signed-off-by: Nicole Baze <[email protected]>
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    Nicole Baze authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    149d0cc View commit details
    Browse the repository at this point in the history
  21. xilpm: Extern C added to header files

    Added extern C to resolve compilation errors occuring for C++
    
    Signed-off-by: Nicole Baze <[email protected]>
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    Nicole Baze authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    efcedfb View commit details
    Browse the repository at this point in the history
  22. openamp: update to match upstream up to commit 83f2b72

    Signed-off-by: Ben Levinsky <[email protected]>
    
    Acked-for-series: Wendy Liang <[email protected]>
    Ben Levinsky authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d7b7855 View commit details
    Browse the repository at this point in the history
  23. openamp_echo_test: zynqmp_r5: use different shared memory based on RP…

    …U id
    
    Use different shared memory based on RPU id.
    
    Signed-off-by: Ben Levinsky <[email protected]>
    
    Acked-for-series: Wendy Liang <[email protected]>
    Ben Levinsky authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4154dcb View commit details
    Browse the repository at this point in the history
  24. openamp_matrix_multiply: zynqmp_r5: use different shared memory based…

    … on RPU id
    
    Use different shared memory based on RPU id.
    
    Signed-off-by: Ben Levinsky <[email protected]>
    
    Acked-for-series: Wendy Liang <[email protected]>
    Ben Levinsky authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    38dce47 View commit details
    Browse the repository at this point in the history
  25. openamp_rpc_demo: zynqmp_r5: use different shared memory based on RPU id

    Use different shared memory based on RPU id.
    
    Signed-off-by: Ben Levinsky <[email protected]>
    
    Acked-for-series: Wendy Liang <[email protected]>
    Ben Levinsky authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    874a9d1 View commit details
    Browse the repository at this point in the history
  26. Xilskey: Add assert to validate lengths in XilSKey_Efuse_ValidateKey()

    Added length validations in XilSKey_Efuse_ValidateKey()
    functions
    
    Signed-off-by: Archana Obannagari <[email protected]>
    Acked-by: VNSL Durga Challa <[email protected]>
    
    Acked-by: VNSL Durga Challa <[email protected]>
    Archanao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    62d98a2 View commit details
    Browse the repository at this point in the history
  27. v_hdmiphy1: Minor bug fix

    Signed-off-by: Eric Bong <[email protected]>
    Acked-by: Yunhai Qiao <[email protected]>
    
    Acked-by: Yunhai Qiao <[email protected]>
    Eric Bong authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    a39a997 View commit details
    Browse the repository at this point in the history
  28. XilSecure: Refactoring h/w definitions

    As part of refactoring hardware offsets are placed
    into the corresponding platform folders.
    Splited common xsecure_hw.h file into xsecure_sha_hw.h,
    xsecure_aes_hw.h and xsecure_rsa_hw.h.
    Also common functionalities like SSS configurations and
    hardware read and write APIs are placed in utils
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    3f2da8c View commit details
    Browse the repository at this point in the history
  29. XilSecure: SHA3 is refactored

    SHA3 is common for both versal and zynqmp, except the
    base address. So placed SHA3 files into common folder.
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0532856 View commit details
    Browse the repository at this point in the history
  30. XilSecure: Refactoring AES driver

    The existing ZynqMP AES driver is been moved under zynqmp
    folder, which is specific to zynqmp, along with SSS
    configurations are updated as part of refactoring
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ef8dc94 View commit details
    Browse the repository at this point in the history
  31. XilSecure: RSA functionality refactoring

    As part of xilsecure refactoring RSA core specific APIs
    are moved to platform specific folders and application interface
    APIs are remain unchanged for versal and Zynqmp, which are moved
    under common folder.
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    fa62c32 View commit details
    Browse the repository at this point in the history
  32. XilSecure: Refactored xsecure file

    IPI response calls of zynqmp specific are moved under
    zynqmp folder
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    14444ee View commit details
    Browse the repository at this point in the history
  33. tmr_manager: makefile: Add "ASSEMBLY_OBJECTS" for compilation of asse…

    …mbly files.
    
    This patch fixes the linking error for tmr_manager by adding
    "ASSEMBLY_OBJECTS" in the makefile.
    
    Signed-off-by: Arunima Mishra <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    Arunima Mishra authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    bdd52f3 View commit details
    Browse the repository at this point in the history
  34. sysmonpsv: modified macro functions to inline functions

    Changed functions from being a macro to an inline function
    
    Signed-off-by: Anand Ashok Dumbre <[email protected]>
    
    Acked-for-series: Conall O'Griofa <[email protected]>
    Anand Ashok Dumbre authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    9d27eef View commit details
    Browse the repository at this point in the history
  35. sysmonpsv: modify the driver supported peripheral entry

    Signed-off-by: Anand Ashok Dumbre <[email protected]>
    
    Acked-for-series: Conall O'Griofa <[email protected]>
    Anand Ashok Dumbre authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    fef6747 View commit details
    Browse the repository at this point in the history
  36. sysmonpsv: add a sysmon polled example

    Signed-off-by: Anand Ashok Dumbre <[email protected]>
    
    Acked-for-series: Conall O'Griofa <[email protected]>
    Anand Ashok Dumbre authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8ebba42 View commit details
    Browse the repository at this point in the history
  37. sw_services :xilplmi: attempt to use uninitialised pointer.

    This patch fix MISRA-C violations in below files.
    53D
    attempt to use uninitialised pointer.
    MISRA-C:2012/AMD1/ADD2: R.9.1
    
    Signed-off-by: Sivaji Boddupilli <[email protected]>
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    Sivaji Boddupilli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    9d766e2 View commit details
    Browse the repository at this point in the history
  38. iicps: Added arbitration lost support

    Added arbitration lost support in polled transfer and also added
    new example for this to demonstrate multi master support for both polled
    and interrupt transfer.
    
    Signed-off-by: Srinivas Goud <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    Srinivas Goud authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6d2e247 View commit details
    Browse the repository at this point in the history
  39. iicps: Updated Copyright year and addtogroup

    Updated Copyright year and doxygen changes for iicps
    
    Signed-off-by: Srinivas Goud <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    Srinivas Goud authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    318dcab View commit details
    Browse the repository at this point in the history
  40. BSP:cortexr5: Fix warnings related to last line of files

    Fixed below warning reported by IAR compiler,
    
    "last line of file ends without a newline"
    
    Signed-off-by: Mubin Usman Sayyed <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    mubinsyed authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b4a3c0f View commit details
    Browse the repository at this point in the history
  41. BSP: Fix warnings related to undefined preprocessing identifiers

    Fixed below warning reported by IAR compiler,
    
    "zero used for undefined preprocessing identifier"
    
    Signed-off-by: Mubin Usman Sayyed <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    mubinsyed authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    f5c69c3 View commit details
    Browse the repository at this point in the history
  42. sw_apps:versal_pmcfw: Added psv_pmc IP name for PMiC MB processor

    Added support for PMC MB with IP name psv_pmc
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    7272530 View commit details
    Browse the repository at this point in the history
  43. sw_apps:versal_psm: Added psv_psm IP name for PSM MB

    Added psv_psm IP name support for PSM MB.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    9e0f133 View commit details
    Browse the repository at this point in the history
  44. xillibpm: Added psv_* IP names for PMC and PSM MB processor name

    Added psv_* IP names for PMC and PSM MB processor name.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    bec1a74 View commit details
    Browse the repository at this point in the history
  45. xilloader: Added psv_* IP names for PMC and PSM MB processor name

    Added psv_* IP names for PMC and PSM MB processor name.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    9b5a58a View commit details
    Browse the repository at this point in the history
  46. mbox: Added psv_* IP names for PMC and PSM MB processor name

    Added psv_* IP names for PMC and PSM MB processor name.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    31a4951 View commit details
    Browse the repository at this point in the history
  47. xilplmi: Added psv_* IP names for PMC and PSM MB processor name

    Added psv_* IP names for PMC and PSM MB processor name.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    fa8ccfd View commit details
    Browse the repository at this point in the history
  48. rfdc: Invert clock detect bits

    The bits in the clock detect register now not active low.
    
    Signed-off-by: Conall O'Griofa <conall.o'[email protected]>
    
    Acked-for-series: Anand Ashok Dumbre <[email protected]>
    Conall O'Griofa authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    30bc629 View commit details
    Browse the repository at this point in the history
  49. rfdc: The Fix XRFdc_GetPLLConfig bug

    The API was returning garbage values, the a 32 bit read reg operation
    was needed.
    The OPdiv calculation also needed to be fixed.
    The DynamicPLLConfig API also needs to write to these regs.
    File permissions.
    
    Signed-off-by: Conall O'Griofa <conall.o'[email protected]>
    
    Acked-for-series: Anand Ashok Dumbre <[email protected]>
    Conall O'Griofa authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ed326fd View commit details
    Browse the repository at this point in the history
  50. openamp examples: add errno.h to where errno is used

    Add including errno.h explicitly in the files where ERRNO is used.
    
    Signed-off-by: Wendy Liang <[email protected]>
    Acked-by: Siva Addepalli <[email protected]>
    Wendy Liang authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b3d8b5d View commit details
    Browse the repository at this point in the history
  51. v_multi_scaler_l2: Corrected argument type for arrays of SRC and DST …

    …buffer setting APIs.
    
    The arrays of function pointers for SrcImgBuf and DstImgBuf are declared to take
    u32 address. But it should be u64 as the IP supports 64bit addressing mode. This
    patch fixes this issue.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    dffebd2 View commit details
    Browse the repository at this point in the history
  52. sw_apps: Clean up freertos_hello_world copyright text

    Removed un-necessary text from freertos_hello_world.c
    copyright.
    
    Signed-off-by: Mubin Usman Sayyed <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    mubinsyed authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    980c75e View commit details
    Browse the repository at this point in the history
  53. XilSecure: Add input validations for Xsecure API's

    This patch adds input validations for XSecure_MemCopy and
    XSecure_RsaCore API's
    
    Signed-off-by: Kalyani Akula <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    57e0069 View commit details
    Browse the repository at this point in the history
  54. XilSecure: Adds sha3 state to the sha3 Instance.

    This patch adds a state variable to Sha3 Instance and
    updates state in respective API's.
    
    Signed-off-by: Kalyani Akula <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0e0c900 View commit details
    Browse the repository at this point in the history
  55. XilSecure: Adds Aes state to AesInstance.

    This patch adds a state flag to AesInstance and updates
    the same in respective API's.
    
    Signed-off-by: Kalyani Akula <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    41216cb View commit details
    Browse the repository at this point in the history
  56. XilSecure: Adds Rsa state to RsaInstance.

    This patch adds state to RsaInstance and updates
    the same in respective API's
    
    Signed-off-by: Kalyani Akula <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e0195b5 View commit details
    Browse the repository at this point in the history
  57. sw_apps :versal_pmcfw: Enable SBI_DATARDY interrupt in PMCFW

    SBI_DATARDY interrupt is enabled in SetUpUInterruptSystems function to enable
    readback from SBI interface
    
    Signed-off-by: Vikram Sreenivasa Batchali <[email protected]>
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    [email protected] authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    86f326c View commit details
    Browse the repository at this point in the history
  58. sw_apps:versal_plm: Increased stack size and enabled stack protection

    Increased the stack size from 2K to 4K for SD boot modes, and updated SHR
    and SLR registers to get proper stack protection.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Vikram Sreenivasa Batchali <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e439dc7 View commit details
    Browse the repository at this point in the history
  59. sw_services:xilplmi: Added error values in comments for readability

    Updated the error code values in comments after every error enum value
    to easily identify the error code.
    Also added processed CDO length and CMD ID in prints in case of command
    execution failure.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Vikram Sreenivasa Batchali <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d56ed99 View commit details
    Browse the repository at this point in the history
  60. sw_services:xilloader: Added support for loading partial PDIs

    Added support for loading partial / subsystem PDI files.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    
    Acked-for-series: Vikram Sreenivasa Batchali <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    79b6d75 View commit details
    Browse the repository at this point in the history
  61. ospipsv: Added Cache Invalidate after DMA read

    Cache invalidation need to happen after DMA read.
    This patch adds code to do cache invalidation after DMA read.
    This patch also fixes issue in unaligned byte count(>=4) DMA read.
    
    Signed-off-by: Sai Krishna Potthuri <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    P L Sai Krishna authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    aece882 View commit details
    Browse the repository at this point in the history
  62. ospipsv: Used XIL_EXCEPTION_ID_INT instead of XIL_EXCEPTION_ID_FIQ_INT

    Standalone driver is taking care of pointing XIL_EXCEPTION_ID_INT to FIQ
    in case of Cortexa72, hence this patch replace FIQ with INT.
    
    Signed-off-by: Sai Krishna Potthuri <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    P L Sai Krishna authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e4a2961 View commit details
    Browse the repository at this point in the history
  63. xilisf: Used XIL_EXCEPTION_ID_INT instead of XIL_EXCEPTION_ID_FIQ_INT

    Standalone driver is taking care of pointing XIL_EXCEPTION_ID_INT to FIQ
    in case of Cortexa72, hence this patch replace FIQ with INT.
    
    Signed-off-by: Sai Krishna Potthuri <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    P L Sai Krishna authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e785607 View commit details
    Browse the repository at this point in the history
  64. hdcp22_rx_dp: Added Rx Capability set API

    This patch adds an api to set Rx_Caps in HDCP22 DPCD.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0b900af View commit details
    Browse the repository at this point in the history
  65. dp14txss: Corrected HDCP22 functions

    This patch adds function to set HDCP22 Keys and corrects other HDCP22 functions.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    3dc664e View commit details
    Browse the repository at this point in the history
  66. dp14rxss: Corrected HDCP22 functions

    This patch adds function to set HDCP22 Keys, Link Integrity failure
    interrupt handler and corrects other HDCP22 functions.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    18183fc View commit details
    Browse the repository at this point in the history
  67. hdcp22_tx_dp: Corrected driver version number.

    This patch corrects hdcp22_tx_dp driver version to its initial version
    1.0
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6b200c3 View commit details
    Browse the repository at this point in the history
  68. Removed obsolete drivers v_pt4175, v_pt3190, v_dpt4175, v_dpt3190

    Signed-off-by: Siva Addepalli <[email protected]>
    saddepal authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    3936759 View commit details
    Browse the repository at this point in the history
  69. xillibpm: Add Bisr repair routines

    This patchset adds bisr routines for below tags:
    LPD_TAG_ID
    FPD_TAG_ID
    CPM_TAG_ID
    MEA_TAG_ID
    MEB_TAG_ID
    MEC_TAG_ID
    DDRMC_TAG_ID
    GTY_TAG_ID
    DCMAC_TAG_ID
    ILKN_TAG_ID
    MRMAC_TAG_ID
    SDFEC_TAG_ID
    BRAM_TAG_ID
    URAM_TAG_ID
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series-by: Vladislav Sahnovich  <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    200ff55 View commit details
    Browse the repository at this point in the history
  70. xillibpm: Add Bisr function calls for house cleaning routines

    This patchset updates house cleaning bisr routines
    for all power domains
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series-by: Vladislav Sahnovich  <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    148ac85 View commit details
    Browse the repository at this point in the history
  71. xillibpm: correct NPD Mbist sequence

    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series-by: Vladislav Sahnovich  <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d52c20f View commit details
    Browse the repository at this point in the history
  72. xillibpm: Add Gty and CPM house cleaning

    Add Gty and CPM house cleaning as part of PL house cleaning
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series-by: Vladislav Sahnovich  <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c058253 View commit details
    Browse the repository at this point in the history
  73. xillibpm: Add missing PL house cleaning

    This patch adds missing CFI pre and post configuration
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series-by: Vladislav Sahnovich  <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e411443 View commit details
    Browse the repository at this point in the history
  74. gpiops:examples:Added example for versal

    updated xgpiops_polled_example.c file with versal suppport.
    Added new file xgpiops_polled_ps_example.c for versal.
    updated readme.txt.
    
    Signed-off-by: Srinivas Neeli <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    sneeli-git authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    629f92d View commit details
    Browse the repository at this point in the history
  75. ChangeLog:Updated Changelog file for gpiops

    Signed-off-by: Srinivas Neeli <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    sneeli-git authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    69d6a04 View commit details
    Browse the repository at this point in the history
  76. zdma: Update writeonly mode example to support versal adma IP

    ZynqMP adma AXI width is 64 where as versal adma IP AXI width is 128-bit.
    Due to the above change in the IP writeonly mode example is failing on versal
    due to improper check in the data verification logic.
    
    This patch fixes this issue.
    
    Signed-off-by: Appana Durga Kedareswara rao <[email protected]>
    Acked-by: Harini Katakam <[email protected]>
    
    Acked-by: Harini Katakam <[email protected]>
    kedareswararao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b30d50d View commit details
    Browse the repository at this point in the history
  77. ddrpsv: Add initial version

    Versal address map is having 4 DDR regions.If HW
    design consist of all 4 DDR regions, macros
    generated by driver would be as given below,
    
    	#define XPAR_AXI_NOC_DDR_LOW_0_BASEADDR 0x00000000
    	#define XPAR_AXI_NOC_DDR_LOW_0_HIGHADDR 0x7FFFFFFF
    
    	#define XPAR_AXI_NOC_DDR_LOW_1_BASEADDR 0x000800000000
    	#define XPAR_AXI_NOC_DDR_LOW_1_HIGHADDR 0x000FFFFFFFFF
    
    	#define XPAR_AXI_NOC_DDR_LOW_2_BASEADDR 0x00C000000000
    	#define XPAR_AXI_NOC_DDR_LOW_2_HIGHADDR 0x00FFFFFFFFFF
    
    	#define XPAR_AXI_NOC_DDR_LOW_3_BASEADDR 0x010000000000
    	#define XPAR_AXI_NOC_DDR_LOW_3_HIGHADDR 0x017FFFFFFFFF
    
    Signed-off-by: Mubin Usman Sayyed <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    mubinsyed authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    3defb0f View commit details
    Browse the repository at this point in the history
  78. xillibpm: Move HB bisr before Bram/Uram bisr for PL

    There is no status check for HB bisr so moving it before Bram/Uram bisr
    to make sure it is completed before scan clear is triggered.(Suggested by Wei)
    
    Signed-off-by: Jolly Shah <[email protected]>
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    968bb70 View commit details
    Browse the repository at this point in the history
  79. xillibpm: Remove PLD house clean post processing and add Compile flag…

    … to bypass houseclean
    
    Remove post process code as it needs to be done after bitstream loading.
    Add compile flag to bypass house clean.
    
    Signed-off-by: Jolly Shah <[email protected]>
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6754405 View commit details
    Browse the repository at this point in the history
  80. Fix for xdbg_printf issue and other compilation fix. CR-1024388

    Signed-off-by: Kapil Usgaonkar <[email protected]>
    
    Acked by : Pankaj Kumbhare <[email protected]>
    Kapil Usgaonkar authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    3c00b34 View commit details
    Browse the repository at this point in the history
  81. sw_apps :versal_pmcfw: Global sequence init should not be called in P…

    …R case
    
    The patch adds a variable PartialPdi in XPmcFw structure and calls the
    XCfuPmc_GlblSeqInit function based upon the value of the variable
    
    Signed-off-by: Vikram Sreenivasa Batchali <[email protected]>
    Acked-by: Mounika Grace Akula <[email protected]>
    
    Acked-by: Mounika Grace Akula <[email protected]>
    [email protected] authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e0871a7 View commit details
    Browse the repository at this point in the history
  82. Xilsecure: Added IAR support

    This patch adds IAR compiler support for Xilsecure library.
    Summary of changes:
    - Fixed IAR compiler errors "Error[Li006]: duplicate definitions"
    -  Warning[Pe546]:  in IAR for variable declartion in between the code
       with goto statements
    - Added IAR suuport in make file
    
    Signed-off-by: Ramadevi Veggalam <[email protected]>
    Acked-by: VNSL Durga Challa <[email protected]>
    
    Acked-by: VNSL Durga Challa <[email protected]>
    Ramadevi Veggalam authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    766cce4 View commit details
    Browse the repository at this point in the history
  83. XilSecure: Handle XSecure_Aes Error codes properly.

    This patch adds XSECURE_AES_ERROR, which represents the
    error returned is from XSecure_Aes.
    
    Signed-off-by: Kalyani Akula <[email protected]>
    Acked-by: Mohan Dhanawade <[email protected]>
    
    Acked-by: Mohan Dhanawade <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    21fa7d8 View commit details
    Browse the repository at this point in the history
  84. Setting RX link capability to 8.1 for all RX applications

    Signed-off-by: Kapil Usgaonkar <[email protected]>
    CR- 1025411
    
    Acked by : Pankaj Kumbhare <[email protected]>
    Kapil Usgaonkar authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    85bdff8 View commit details
    Browse the repository at this point in the history
  85. examples: generic: zynqmp_r5: use atomic_flag for flags

    Use atomic_flag type for the atomic variable for the atomic flag
    operation.
    
    Signed-off-by: Wendy Liang <[email protected]>
    
    Acked-for-series: Ben Levinsky <[email protected]>
    Wendy Liang authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    7762bd3 View commit details
    Browse the repository at this point in the history
  86. examples: generic: zynqmp_r5: ipi_shmem: not clear shmem

    Do not clear shmem, the Linux side will clear the shared memory
    before it starts. On versal, it looks like RPU will the ipi_shmem
    after the atomic test before the Linux side finishing the atomic test
    , if it clear the shared memory, the Linux side atomic test will get
    the wrong result.
    
    Signed-off-by: Wendy Liang <[email protected]>
    
    Acked-for-series: Ben Levinsky <[email protected]>
    Wendy Liang authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    bb93bcb View commit details
    Browse the repository at this point in the history
  87. sw_apps :versal_pmcfw: Global signals enabling should not happen mult…

    …iple times when house cleaning is disabled
    
    This is ensured by forcing PlCleaningDone value to 1 when housecleaning is bypassed.
    
    Signed-off-by: Vikram Sreenivasa Batchali <[email protected]>
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    [email protected] authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    38959c4 View commit details
    Browse the repository at this point in the history
  88. Xilsecure: Add timeouts in SHA module

    Add timeouts in SHA module
    
    Signed-off-by: Archana Obannagari <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    Archanao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    272b4f4 View commit details
    Browse the repository at this point in the history
  89. Xilsecure: Change default status value as XST_FAILURE

    Change defalut return valu as XST_FAILURE
    
    Signed-off-by: Archana Obannagari <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    Archanao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    08058b8 View commit details
    Browse the repository at this point in the history
  90. Xilsecure: Add Status and timeout in AES

    Add Status and timeout in AES Module
    
    Signed-off-by: Archana Obannagari <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    Archanao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b40c201 View commit details
    Browse the repository at this point in the history
  91. Xilsecure: Read return status of the functions

    Read return status of the functions in Xsecure.c
    
    Signed-off-by: Archana Obannagari <[email protected]>
    
    Acked-for-series: Mohan Dhanawade <[email protected]>
    Archanao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    baf681f View commit details
    Browse the repository at this point in the history
  92. xillibpm: Add ADMA, RTC and IPI nodes

    Add ADMA, RTC and IPI nodes in LibPM.
    
    Signed-off-by: Rajan Vaja <[email protected]>
    Acked-by: Jolly Shah <[email protected]>
    
    Acked-by: Jolly Shah <[email protected]>
    rajanv-xilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c204b97 View commit details
    Browse the repository at this point in the history
  93. hdcp22_common: Makefile change to make map file consistent

    This patch is to generate consistent map files (same user object address
    values in the map files)across different OS platforms such as windows
    and linux.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5cbb22d View commit details
    Browse the repository at this point in the history
  94. hdcp22_rng: Makefile change to make map file consistent

    This patch is to generate consistent map files (same user object address
    values in the map files)across different OS platforms such as windows
    and linux.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ac87620 View commit details
    Browse the repository at this point in the history
  95. hdcp22_mmult: Makefile change to make map file consistent

    This patch is to generate consistent map files (same user object address
    values in the map files)across different OS platforms such as windows
    and linux.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    1369f6b View commit details
    Browse the repository at this point in the history
  96. hdcp22_cipher_dp: Makefile change to make map file consistent

    This patch is to generate consistent map files (same user object address
    values in the map files)across different OS platforms such as windows
    and linux.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    fc8bd26 View commit details
    Browse the repository at this point in the history
  97. hdcp22_rx_dp: Makefile change to make map file consistent

    This patch is to generate consistent map files (same user object address
    values in the map files)across different OS platforms such as windows
    and linux.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ff6bb97 View commit details
    Browse the repository at this point in the history
  98. hdcp22_tx_dp: Makefile change to make map file consistent

    This patch is to generate consistent map files (same user object address
    values in the map files)across different OS platforms such as windows
    and linux.
    
    Signed-off-by: Jagadeesh Banisetti <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    Jagadeesh Banisetti authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    495f26c View commit details
    Browse the repository at this point in the history
  99. v_multi_scaler: Makefile change to make map file consistent

    This patch is to generate consistent map files (same user object address
    values in the map files)across different OS platforms such as windows and
    linux.
    
    Signed-off-by: Vivek Veenam <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    Vivek Veenam authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    04dce1f View commit details
    Browse the repository at this point in the history
  100. v_frmbuf_wr: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e9c21fa View commit details
    Browse the repository at this point in the history
  101. v_scenechange: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8d6cf5b View commit details
    Browse the repository at this point in the history
  102. mipicsiss: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    9ce4ef6 View commit details
    Browse the repository at this point in the history
  103. v_mix: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    037e6b6 View commit details
    Browse the repository at this point in the history
  104. dphy: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    daf35b3 View commit details
    Browse the repository at this point in the history
  105. v_frmbuf_rd: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6be9c98 View commit details
    Browse the repository at this point in the history
  106. v_hcresampler: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    52654b4 View commit details
    Browse the repository at this point in the history
  107. v_vcresampler: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    aa09d8f View commit details
    Browse the repository at this point in the history
  108. v_hscaler: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    535e7b8 View commit details
    Browse the repository at this point in the history
  109. v_vscaler: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    af1d927 View commit details
    Browse the repository at this point in the history
  110. v_letterbox: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    19e8be9 View commit details
    Browse the repository at this point in the history
  111. v_tpg: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e3cc444 View commit details
    Browse the repository at this point in the history
  112. v_csc: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    f2aecf0 View commit details
    Browse the repository at this point in the history
  113. v_deinterlacer: Generate consistent linker .map files across OS platf…

    …orms
    
    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ef25ea0 View commit details
    Browse the repository at this point in the history
  114. csi2tx: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c51222f View commit details
    Browse the repository at this point in the history
  115. csi2txss: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    33207a8 View commit details
    Browse the repository at this point in the history
  116. csi: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    92dae4f View commit details
    Browse the repository at this point in the history
  117. dsitxss: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    eaac913 View commit details
    Browse the repository at this point in the history
  118. dsi: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6aeedc5 View commit details
    Browse the repository at this point in the history
  119. sdi_common: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4092cbb View commit details
    Browse the repository at this point in the history
  120. v_sdirx: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    13279de View commit details
    Browse the repository at this point in the history
  121. v_sditx: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    46a08f5 View commit details
    Browse the repository at this point in the history
  122. v_sditxss: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    dedc646 View commit details
    Browse the repository at this point in the history
  123. v_gamma_lut: Generate consistent linker .map files across OS platforms

    This patch enables to generate consistent/matching linker .map
    files across OS platforms such as Windows and Linux.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    873ee41 View commit details
    Browse the repository at this point in the history
  124. Xilfpga: Correct the secure Iv handling logic.

    In the current implementation, the SecureIv variable
    is sharing between xilfpga and Xilsecure libraries.
    To avoid data sharing conflicts removed SecureIV
    shared variable dependency and updated the
    secure Iv handling logic.
    
    Signed-off-by: Nava kishore Manne <[email protected]>
    
    Acked-for-series: Appana Durga Kedareswara rao <[email protected]>
    Nava kishore Manne authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    33ca1c7 View commit details
    Browse the repository at this point in the history
  125. lib: sw_services: xilmbox: Add versal GIC IP name in the tcl check

    This patch updates the gic variable IP_NAME property checks
    with versal GIC IP name.
    
    Signed-off-by: Appana Durga Kedareswara rao <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    kedareswararao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    f3c724b View commit details
    Browse the repository at this point in the history
  126. Xilskey: Fixed XilSKey_Efuse_ConvertStringToHexBE

    This patch corrects the number of bits passing to the
    XilSKey_Efuse_ConvertStringToHexBE() function.
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    
    Acked-for-series: Kalyani Akula <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    87be9b6 View commit details
    Browse the repository at this point in the history
  127. XilSecure: Added RSA support for Versal

    This patch provides support for RSA core access
    of the Versal platform
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    
    Acked-for-series: Kalyani Akula <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8f93d81 View commit details
    Browse the repository at this point in the history
  128. xilsecure: Refactored the code

    Refactored the code to reduce code complexity and address review
    comments.
    
    Signed-off-by: Mohan Marutirao Dhanawade <[email protected]>
    
    Acked-for-series: Mounika Grace Akula <[email protected]>
    Mohan Dhanawade authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5563c1a View commit details
    Browse the repository at this point in the history
  129. XilSecure: Refactored the code

    Refactored the code to reduce code complexity and to address review
    comments
    
    Signed-off-by: Mohan Marutirao Dhanawade <[email protected]>
    
    Acked-for-series: Mounika Grace Akula <[email protected]>
    Mohan Dhanawade authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    09db79a View commit details
    Browse the repository at this point in the history
  130. zynqmp_pmufw: Fixed MISRA-C violations in pm_pinctrl files

    This patch fixes the following MISRA violations in pm_pinctrl files:
    - Basic type declaration used.(MISRA-C:2012 D.4.6)
    - Expression needs brackets.(MISRA-C:2012 R.12.1,R.20.7)
    - Procedure contains UR data flow anomalies. : val(MISRA-C:2012 R.9.1)
    - Expression needs brackets.(MISRA-C:2012 R.12.1,R.20.7)
    - Literal value requires a U suffix. : 1(MISRA-C:2012 R.7.2,R.10.3,R.10.4)
    - No prototype for non-static function.(MISRA-C:2012 R.8.4)
    
    Signed-off-by: Ramadevi Veggalam <[email protected]>
    
    Acked-for-series: Mounika Grace Akula <[email protected]>
    Ramadevi Veggalam authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4fba441 View commit details
    Browse the repository at this point in the history
  131. Adding support to configure user defined EDID data.

    This patch adds the support to configure the user defined EDID data.
    If user doesn't set the edidsize, then driver will configure
    static EDID data of 128 bytes.
    
    Signed-off-by: Venkateshwar Rao Gannavarapu <[email protected]>
    
    Acked by : Kapil Usgaonkar <[email protected]>
    Venkateshwar Rao G authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5c2043e View commit details
    Browse the repository at this point in the history
  132. corrected pixel width calculation for native mode

    This patch corrects the pixel width calculation if dptxss is
    configured to native mode, where user can restrict pixel width
    from gui.
    
    Signed-off-by: Venkateshwar Rao Gannavarapu <[email protected]>
    
    Acked by : Kapil Usgaonkar <[email protected]>
    Venkateshwar Rao G authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    54d9a6a View commit details
    Browse the repository at this point in the history
  133. xillibpm: server: Add PL SRST release to PL init sequence

    PL SRST should be released before PL housclean sequence is
    triggered
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series: Rajan Vaja <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    bae6934 View commit details
    Browse the repository at this point in the history
  134. xillibpm: server: Fix warnings

    This patch fixes some of the xillibpm warnings
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-for-series: Rajan Vaja <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    2d0e2ae View commit details
    Browse the repository at this point in the history
  135. sw_services: xillibpm: Fixed MISRA-C violation in xpm_device_idle files

    This patch fixes the following violation in xpm_device_idle files
     - Function call with no prior declaration.(MISRA-C:2012 R.17.3)
    
    Signed-off-by: Tejas Patel <[email protected]>
    Acked-by: Jolly Shah <[email protected]>
    
    Acked-by: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d365474 View commit details
    Browse the repository at this point in the history
  136. sw_services: xillibpm: Fixed MISRA-C violation in xillibpm_api.c file

    This patch fixes the following violation in xillibpm_api.c file
     - Procedure contains UR data flow anomalies.(MISRA-C:2012 R.9.1)
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    da8958c View commit details
    Browse the repository at this point in the history
  137. sw_services: xillibpm: Fixed MISRA-C violation in xpm_device.c file

    This patch fixes the following violation in xpm_device.c file
     - Procedure contains UR data flow anomalies.(MISRA-C:2012 R.9.1)
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    a043f27 View commit details
    Browse the repository at this point in the history
  138. sw_services: xillibpm: Fixed MISRA-C violation in xpm_pll.c file

    This patch fixes the following violation in xpm_pll.c file
     - Procedure contains UR data flow anomalies.(MISRA-C:2012 R.9.1)
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d954365 View commit details
    Browse the repository at this point in the history
  139. sw_services: xillibpm: Fixed MISRA-C violation in xpm_device_idle.c file

    This patch fixes the following violation in xpm_device_idle.c file
     - Procedure contains UR data flow anomalies.(MISRA-C:2012 R.9.1)
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4c52144 View commit details
    Browse the repository at this point in the history
  140. sw_services: xillibpm: Fixed MISRA-C violation in xpm_ipi.c file

    This patch fixes the following violation in xpm_ipi.c file
     - Procedure contains UR data flow anomalies.(MISRA-C:2012 R.9.1)
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    fc555a4 View commit details
    Browse the repository at this point in the history
  141. sw_services: xillibpm: Fixed MISRA-C violation in xpm_subsystem.c file

    This patch fixes the following violation in xpm_subsystem.c file
     - Procedure contains UR data flow anomalies.(MISRA-C:2012 R.9.1)
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8c5cca4 View commit details
    Browse the repository at this point in the history
  142. Xilsecure:Procedure contains UR data flow anomalies.

    This patch fixes below MISRA-C violation:
    Procedure contains UR data flow anomalies.
    MISRA-C:2012/AMD1 R.9.1
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8e45ed3 View commit details
    Browse the repository at this point in the history
  143. Xilsecure:Copy source parameter not checked before use.

    This patch fixes below MISRA-C violation:
    Copy source parameter not checked before use.
    MISRA-C:2012/AMD1 R.21.17
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    87342cf View commit details
    Browse the repository at this point in the history
  144. Xilsecure:Macro parameter not in brackets.

    This patch fixes below MISRA-C violation:
    Macro parameter not in brackets.
    MISRA-C:2012/AMD1 R.20.7
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    82351fd View commit details
    Browse the repository at this point in the history
  145. Xilsecure:Function return type inconsistent.

    This patch fixes below MISRA-C violation:
    Function return type inconsistent.
    MISRA-C:2012/AMD1 R.10.3
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    41a2614 View commit details
    Browse the repository at this point in the history
  146. Xilsecure:Expression is not Boolean.

    This patch fixes below MISRA-C violation:
    Expression is not Boolean.
    MISRA-C:2012/AMD1 R.10.1,R.14.4
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4f6e1a5 View commit details
    Browse the repository at this point in the history
  147. Xilsecure:Implicit conversion of underlying type (MR).

    This patch fixes below MISRA-C violation:
    Implicit conversion of underlying type (MR).
    MISRA-C:2012/AMD1 R.10.3,R.10.4
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    7f8c002 View commit details
    Browse the repository at this point in the history
  148. Xilsecure: Literal value requires a U suffix.

    This patch fixes below MISRA-C violation:
    Literal value requires a U suffix.
    MISRA-C:2012/AMD1 R.7.2,R.10.3,R.10.4
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    abdd399 View commit details
    Browse the repository at this point in the history
  149. Xilsecure:Expression needs brackets.

    This patch fixes below MISRA-C violation:
    Expression needs brackets.
    MISRA-C:2012/AMD1 R.12.1,R.20.7
    Literal value requires a U suffix.
    MISRA-C:2012/AMD1 R.7.2,R.10.3,R.10.4
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    1bd3043 View commit details
    Browse the repository at this point in the history
  150. Xilsecure: (void) missing for discarded return value.

    This patch fixes below MISRA-C violation:
    (void) missing for discarded return value.
    MISRA-C:2012/AMD1 R.17.7
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b5b6f28 View commit details
    Browse the repository at this point in the history
  151. Xilsecure:Signed/unsigned conversion without cast.

    This patch fixes below MISRA-C violation:
    Signed/unsigned conversion without cast.
    MISRA-C:2012/AMD1 R.10.3,R.10.4
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d5d0fa5 View commit details
    Browse the repository at this point in the history
  152. Xilsecure: More than one prototype for same function.

    This patch fixes below MISRA-C violation:
    More than one prototype for same function.
    MISRA-C:2012/AMD1 R.8.5
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4ad6b55 View commit details
    Browse the repository at this point in the history
  153. Xilsecure: Prototype and definition name mismatch.

    This patch fixes below MISRA-C violation:
    Prototype and definition name mismatch.
    MISRA-C:2012/AMD1 R.8.3,R.8.4
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d77adb8 View commit details
    Browse the repository at this point in the history
  154. Xilsecure: Implicit conversion: actual to formal param (MR).

    This patch fixes below MISRA-C violation:
    Implicit conversion: actual to formal param (MR).
    MISRA-C:2012/AMD1 R.10.3
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    dc4af98 View commit details
    Browse the repository at this point in the history
  155. Xilsecure:Use of mixed mode arithmetic.

    This patch fixes below MISRA-C violation:
    Use of mixed mode arithmetic.
    MISRA-C:2012/AMD1 R.10.1,R.10.2,R.10.3,R.10.4
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    3c99a61 View commit details
    Browse the repository at this point in the history
  156. Xilsecure: Use of underlying enum representation value.

    This patch fixes below MISRA-C violation:
    Use of underlying enum representation value.
    MISRA-C:2012/AMD1 R.10.1,R.10.3,R.10.4
    Type conversion without cast.
    MISRA-C:2012/AMD1 R.10.1,R.10.3,R.10.4,R.11.5
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ec2fd6d View commit details
    Browse the repository at this point in the history
  157. Xilsecure: Removed unnecessary code

    This Patch removes unnecessary code
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    33cf3d2 View commit details
    Browse the repository at this point in the history
  158. Xilsecure: Added extern C

    This patch adds extern C for header files.
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0db1e36 View commit details
    Browse the repository at this point in the history
  159. sw_apps: pmufw: Fix pmu-firmware build failure in vless flow

    Move the appropriate backend code for the xilsecure, xilfpga
    libraries so that the files are picked up by the Makefile.
    Also this patch adds the missing file xsysmonpsu_g.c in the misc
    folder.
    
    Signed-off-by: Appana Durga Kedareswara rao <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    kedareswararao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d155f9c View commit details
    Browse the repository at this point in the history
  160. sw_services :xilloader: Handoff must only happen once for a processor

    Variable CpusRunning is added to XLoader structure. Each bit of the variable
    denotes the running status of a processor. The variable is checked in
    XLoader_StartImage function and handoff is skipped if the CPU is already in
    running state.
    
    Signed-off-by: Vikram Sreenivasa Batchali <[email protected]>
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    
    Acked-by: Krishna Chaitanya Patakamuri <[email protected]>
    [email protected] authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    3049d3d View commit details
    Browse the repository at this point in the history
  161. ddrpsv: Tweak cortexr5 view for lower DDR

    As per cortexr5 processor's view, TCM is mapped at
    lower 256KB. Updated lower DDR base address for
    cortexr5 to be in sync with zynqmp.
    This tweak will be removed once lower DDR base
    address for cortexr5 is fixed from HW designs.
    
    Signed-off-by: Mubin Usman Sayyed <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    mubinsyed authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e81fe2c View commit details
    Browse the repository at this point in the history
  162. XilSecure: Added support for ECDSA

    This patch provides support for ECDSA in Versal
    Makefile is modified to handle pre-compiled ECDSA static
    library file
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    Acked-by: Kalyani Akula <[email protected]>
    
    Acked-by: Kalyani Akula <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    1e37db6 View commit details
    Browse the repository at this point in the history
  163. xilfpga:src:MISRA-C:No brackets to loop body.

    This patch fixes below MISRA-C violation in Xilfpga
    No brackets to loop body
    MISRA-C:2012/AMD1 R.15.6
    
    Signed-off-by: Srinivas Neeli <[email protected]>
    
    Acked-for-series: Nava kishore Manne <[email protected]>
    Srinivas Neeli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8cd5c87 View commit details
    Browse the repository at this point in the history
  164. xilfpga:updated change history

    Updated driver files with Change history.
    
    Signed-off-by: Srinivas Neeli <[email protected]>
    
    Acked-for-series: Nava kishore Manne <[email protected]>
    Srinivas Neeli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    637cb22 View commit details
    Browse the repository at this point in the history
  165. BSP: microblaze: Fix exception handlers for 64 bit variant

    Updated exception handling and vector table to use
    64 bit instructions in case of 64 bit microblaze
    BSP.
    Also, stack size and alignment is updated for 64 bit
    variant.
    
    Signed-off-by: Stefan Asserhall <[email protected]>
    Signed-off-by: Mubin Usman Sayyed <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    asserhall authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    1aa60e2 View commit details
    Browse the repository at this point in the history
  166. XilSecure: Added failure condition

    XSecure_Sha3Finish() is modified to return failure
    if sha3 padselection is other than NIST SHA3 or
    KECCAK.
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    Acked-by: Sarat Chand Savitala <[email protected]>
    
    Acked-by: Sarat Chand Savitala <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c8ff552 View commit details
    Browse the repository at this point in the history
  167. XilSecure: Removes incorrect #define XSECURE_IV_SIZE.

    There were 2 #defines defined for IV size in xsecure.
    The correct size of the IV is 3 words , which is 12 bytes.
    
    Due to the usage of XSECURE_IV_SIZE in some places, we found
    memory corruption in few use cases.
    
    So, This patch removes XSECURE_IV_SIZE define and replaces
    with XSECURE_IV_LEN wherever XSECURE_IV_SIZE is used.
    
    Signed-off-by: Kalyani Akula <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    888537c View commit details
    Browse the repository at this point in the history
  168. XilSecure: Made CsuDma global variable as static global.

    This patch makes CsuDma global varible to static global
    variable and provides an API that returns CsuDmaPtr.
    
    Signed-off-by: Kalyani Akula <[email protected]>
    
    Acked-for-series: Sarat Chand Savitala <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b8d87bb View commit details
    Browse the repository at this point in the history
  169. xillibpm: server: Add support for clk flags

    Add support for generic clk flags which is parsed from topology.
    Also add check for CLK_FLAG_READ_ONLY flag in clock permission check.
    
    Signed-off-by: Rajan Vaja <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    rajanv-xilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    52211ba View commit details
    Browse the repository at this point in the history
  170. xillibpm: server: Remove invalid clock checks

    Remove list of invalid clock array and checks for invalid clocks.
    CPM registers are not accessible on SPP PS DDR. So mark CPM related
    clocks as invalid under SPP_HACK flag. This code can be removed once
    CPM registers are accessible.
    
    Signed-off-by: Rajan Vaja <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    rajanv-xilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    f68b95a View commit details
    Browse the repository at this point in the history
  171. xillibpm: Put cores into reset after power down

    This patch adds code to put cores into reset after power down
    
    Signed-off-by: Jolly Shah <[email protected]>
    
    Acked-by: Rajan Vaja <[email protected]>
    Jolly Shah authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    35d3fb0 View commit details
    Browse the repository at this point in the history
  172. doc: Updated qspips driver changelog

    Updated Changelog for memory leak fixes in qspips driver.
    
    Signed-off-by: Amit Kumar Mahapatra <[email protected]>
    
    Acked-for-series: Naga Sureshkumar Relli <[email protected]>
    Amit Kumar Mahapatra authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c491123 View commit details
    Browse the repository at this point in the history
  173. ospipsv: Fixed data alignment issues for IAR compiler.

    This patch fixes data alignment errors and warnings for IAR compiler.
    
    Signed-off-by: Amit Kumar Mahapatra <[email protected]>
    
    Acked-for-series: Naga Sureshkumar Relli <[email protected]>
    Amit Kumar Mahapatra authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    34baba9 View commit details
    Browse the repository at this point in the history
  174. doc: Update ospipsv driver changelog for IAR fixes.

    updated Changelog for IAR fixes in ospipsv.
    
    Signed-off-by: Amit Kumar Mahapatra <[email protected]>
    
    Acked-for-series: Naga Sureshkumar Relli <[email protected]>
    Amit Kumar Mahapatra authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    13f85fc View commit details
    Browse the repository at this point in the history
  175. Changelog: Update changelog for prc driver

    Signed-off-by: Nava kishore Manne <[email protected]>
    
    Acked-for-series: Appana Durga Kedareswara rao <[email protected]>
    Nava kishore Manne authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    04c7b15 View commit details
    Browse the repository at this point in the history
  176. xillibpm: Extern C added to remaining header files

    This patch adds missing extern "C" to any remaining xillibpm header files to fix C++ compilation errors
    
    Signed-off-by: Nicole Baze <[email protected]>
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    Nicole Baze authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    77e42a4 View commit details
    Browse the repository at this point in the history
  177. Xilskey: Added support for user configurable GPIO

    This patch adds support for user configurable GPIO
    for jtag control
    
    Signed-off-by: Pamela Singh <[email protected]>
    
    Acked-for-series: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b229b43 View commit details
    Browse the repository at this point in the history
  178. xilfpga: Remove vesal platform related changes

    As per the new design, the Bitstream loading for versal
    platform is done by PLM base on the CDO's data exists
    in the PDI images. So there is no need of xilfpga API's
    for versal platform to configure the PL.
    
    Signed-off-by: Nava kishore Manne <[email protected]>
    
    Acked-for-series: Appana Durga Kedareswara rao <[email protected]>
    Nava kishore Manne authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    581031a View commit details
    Browse the repository at this point in the history
  179. Revert "xilfpga: Remove vesal platform related changes"

    This reverts commit a2e89a2.
    saddepal authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    21e2f74 View commit details
    Browse the repository at this point in the history
  180. freertos10_xilinx: Add configUSE_TASK_FPU_SUPPORT for A53 processor.

    This patch Add configUSE_TASK_FPU_SUPPORT for A53 processor. If its value is set to 1
    (or left undefined) then tasks are created without an FPU context and
    must call vPortTaskUsesFPU() to give themselves an FPU context before using any
    FPU instructions.  If configUSE_TASK_FPU_SUPPORT is set to 2 then all tasks will
    have an FPU context by default.
    
    Signed-off-by: Arunima Mishra <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    Arunima Mishra authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4384a0a View commit details
    Browse the repository at this point in the history
  181. sw_services :xilloader: Remove code referencing xilfpga APIs from xil…

    …loader
    
    Xloader_cfi.c is deleted, structure XLoader is deleted and APIs using the XLoader Ptr are modified.
    Variable CpusRunning is moved to XilPdi structure. xilfpga is removed from versal_plm.mss
    
    Signed-off-by: Vikram Sreenivasa Batchali <[email protected]>
    Acked-by: Nava kishore Manne <[email protected]>
    
    Acked-by: Nava kishore Manne <[email protected]>
    [email protected] authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    50ee0d4 View commit details
    Browse the repository at this point in the history
  182. xilfpga: Remove vesal platform related changes

    As per the new design, the Bitstream loading for versal
    platform is done by PLM base on the CDO's data exists
    in the PDI images. So there is no need of xilfpga API's
    for versal platform to configure the PL.
    
    Signed-off-by: Nava kishore Manne <[email protected]>
    
    Acked-for-series: Appana Durga Kedareswara rao <[email protected]>
    Nava kishore Manne authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    fb47a10 View commit details
    Browse the repository at this point in the history
  183. usbpsu: Fix incorrect dma_alignment pragma directive for IAR workbench

    This patch fixes the incorrect dma_alignment pragma directive for
    IAR workbench
    
    Signed-off-by: Anurag Kumar Vulisha <[email protected]>
    
    Acked-for-series: Harini Katakam <[email protected]>
    Anurag Kumar Vulisha authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c811da3 View commit details
    Browse the repository at this point in the history
  184. xilffs: Fix data alignment issues for IAR compiler

    Remove the unused data alignment pragma from the xilffs library code.
    
    Signed-off-by: Manish Narani <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    mnarani authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    596d22f View commit details
    Browse the repository at this point in the history
  185. qspipsu: Fixed data alignment warnings in the examples for IAR compiler.

    This patch fixes the improper data alignment checks in the examples
    for IAR compiler.
    
    Signed-off-by: Amit Kumar Mahapatra <[email protected]>
    
    Acked-for-series: Naga Sureshkumar Relli <[email protected]>
    Amit Kumar Mahapatra authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    928f145 View commit details
    Browse the repository at this point in the history
  186. xillibpm: make ADMA non-secure during device request

    There is no support of user configuration through CDO.
    So make ADMA non-secure during device request so that
    non-secure masters (e.g. Linux) can use this device.
    
    Signed-off-by: Rajan Vaja <[email protected]>
    Acked-by: Jolly Shah <[email protected]>
    
    Acked-by: Jolly Shah <[email protected]>
    rajanv-xilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5d06230 View commit details
    Browse the repository at this point in the history
  187. zynqmp_pmufw: Add support for Ultra96 power button

    Ultra96 has a power button controller LTC2950 which generates an active low
    interrupt on MIO26 whenever the power button is pressed.  Since PMU GPI
    (connected to MIO26) only supports positive edge triggered interrupts, it is
    not possible to reliably capture the power button press event. So, we choose
    to capture the button press event by polling for the GPI pin state at regular
    intervals. When a LOW state is detected on the pin, system shutdown process is
    initiated. As per the datasheet, LTC2950 generates an active low pulse of
    minimum 26ms duration. So, to ensure we capture the event reliably, a scheduler
    task that runs every 10ms is added to check for the pin state and initiate
    shutdown. This patch adds Ultra96 module which implements this functionality
    and is enabled by defining ENABLE_MOD_ULTRA96 flag. It depends on scheduler
    feature which needs to be enabled (ENABLE_SCHEDULER).
    
    If FSBL is not yet running, it means that MIO is not configured and
    the GPI1 MIO bits in IOModule always read zero. This could cause false
    triggers. Also PM module may not have the right IPI info. So skip
    pin monitoring until config object is loaded.
    
    For Ultra96 V2 board, the power button controller generates an
    active high pulse. This polarity change between V1 and V2 boards is
    handled based on ULTRA96_VERSION macro which needs to be set to 1 or 2,
    based on the board version
    
    Signed-off-by: Jyotheeswar Reddy <[email protected]>
    Acked-by: Jolly Shah <[email protected]>
    
    Acked-by: Jolly Shah <[email protected]>
    Jyotheeswar Reddy authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c31cb79 View commit details
    Browse the repository at this point in the history
  188. v_scenechange: Added OBJECTS macro for compilation

    This patch adds OBJECTS macro defination for source files.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vivek Veenam <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    10c217a View commit details
    Browse the repository at this point in the history
  189. v_sdirxss: Added OBJECTS defination in Makefile

    This patch adds defination for OBJECTS in Makefile
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-for-series: Vivek Veenam <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    1fe38e4 View commit details
    Browse the repository at this point in the history
  190. lib: Argument of strlen is unterminated.

    This patch fixes below MisraC mandatory violation for standalone.
    	Argument of strlen is unterminated.
    	MISRA-C:2012 R.21.17
    
    Signed-off-by: Arunima Mishra <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    Arunima Mishra authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    dac282e View commit details
    Browse the repository at this point in the history
  191. dp14: Adding MST-Lite Audio Enable/Disable support

    This patch adds the support to enable/disable Audio in
    dp14 txss and rxss based MST system
    
    Signed-off-by: Venkateshwar Rao Gannavarapu <[email protected]>
    
    Acked by: Kapil Usgaonkar <[email protected]>
    Venkateshwar Rao G authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    aae0459 View commit details
    Browse the repository at this point in the history
  192. sw_apps: memtest: Add check for Carriage return for manual size test

    The DRAM test code gets stuck when user enters the size in MB or GB and
    presses enter. This is because there is an extra character 'Carriage
    Return' is entered along with new line character. This patch handles the
    same.
    
    Signed-off-by: Manish Narani <[email protected]>
    Acked-by: Anirudha Sarangi <[email protected]>
    
    Acked-by: Anirudha Sarangi <[email protected]>
    mnarani authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    68ab0a9 View commit details
    Browse the repository at this point in the history
  193. Xilsecure: Fixed IAR warning

    This patch fixes below IAR warning:
    	"enumerated type mixed with another type"
    
    Signed-off-by: Pamela Singh <[email protected]>
    Acked-by: VNSL Durga Challa <[email protected]>
    
    Acked-by: VNSL Durga Challa <[email protected]>
    Pamela Singh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    84f60a0 View commit details
    Browse the repository at this point in the history
  194. This patch updates the MST passthrough application and TX audio for S…

    …ST Passthrough
    
    Signed-off-by: Kapil Usgaonkar <[email protected]>
    
    Acked-by :  Venkateshwar Rao Gannavarapu <[email protected]>
    Kapil Usgaonkar authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ac8cf31 View commit details
    Browse the repository at this point in the history
  195. dp14rxss: Adding support to new firmware version of mcdp retimer.

    This patch adds the support to new firmware version of mcdp retimer
    programming sequence
    
    Signed-off-by: Venkateshwar Rao Gannavarapu <[email protected]>
    
    Acked by: Kapil Usgaonkar <[email protected]>
    Venkateshwar Rao G authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    1fe86da View commit details
    Browse the repository at this point in the history
  196. XilSecure: Use XCsuDma_WaitForDoneTimeOut instead of XCsuDma_WaitForD…

    …one.
    
    This patch replaces XCsuDma_WaitForDone function calls
    with XCsuDma_WaitForDoneTimeOut in XilSecure Library.
    
    Signed-off-by: Kalyani Akula <[email protected]>
    Acked-by: VNSL Durga Challa <[email protected]>
    
    Acked-by: VNSL Durga Challa <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6ab3dfc View commit details
    Browse the repository at this point in the history
  197. xilfpga: Fixed IAR compiler warnings in read back examples

    This patch fixes the following IAR compiler warnings:
    Remark[Pe1873]: comparison between signed and unsigned operands
    Warning[Pe047]: Incompatible redefinition of macro (xilfpga_pcap.h and
    xfpga_reg_readback_example.c)
    
    Signed-off-by: Ramadevi Veggalam <[email protected]>
    Acked-by: Appana Durga Kedareswara rao <[email protected]>
    
    Acked-by: Appana Durga Kedareswara rao <[email protected]>
    Ramadevi Veggalam authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8e04ffd View commit details
    Browse the repository at this point in the history
  198. vprocss: Provide programmable fps for the application

    This patch enables the variable frame rates for the application to
    configure different fps.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    Acked-by: Vishal Sagar <[email protected]>
    
    Acked-by: Vishal Sagar <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0bdaad1 View commit details
    Browse the repository at this point in the history
  199. xillibpm: server: Change set requirement logic

    In current LibPM code, use count of the device is decremented from
    device's handler and it is incremented from request device API.
    Because of this, in some situations, use count does not handled
    properly and device's state is not handling properly. Take below
    example.
    
    - Default: Use count = 0, state = unused
    XPm_RequsetDevice(XPM_DEVID_GEM_0, XPM_DEF_CAPABILITY, 0, 0);
    	Use count = 1, state = running
    XPm_SetRequirement(XPM_DEVID_GEM_0, 0, 0, 0);
    	Use count = 0, state = unused
    XPm_SetRequirement(XPM_DEVID_GEM_0, XPM_MAX_CAPABILITY, 0, 0);
    	Use count = 0, state = running
    XPm_SetRequirement(XPM_DEVID_GEM_0, 0, 0, 0);
    	Use count = -1, state = running
    
    To fix this remove use count logic from device's handler and change
    set requirement API to handle device's state by checking device's
    maximum capability instead of use count.
    
    Signed-off-by: Rajan Vaja <[email protected]>
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    rajanv-xilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0b6177a View commit details
    Browse the repository at this point in the history
  200. xillibpm: server: Change subsystem state after resume

    As per the current implementation, state of subsystem is changed to
    OFFLINE while powering down all the cores of subsystem. But state is
    not changing to ONLINE after resume. Because of this, APIs which are
    dependent on subsystem's state are failed after resume.
    
    Change subsystem state to ONLINE after resume from suspend.
    
    Signed-off-by: Rajan Vaja <[email protected]>
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    rajanv-xilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    dcec3ae View commit details
    Browse the repository at this point in the history
  201. xillibpm: server: Skip reset assert for peripheral devices

    Skip asserting reset to peripheral devices, since their register
    content will lost after asserting reset.
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b7262a6 View commit details
    Browse the repository at this point in the history
  202. versal_psmfw: Remove XPsmFwGemDisable() from xpsmfw_power.c

    Remove XPsmFwGemDisable(), since reset and clock is handled from
    LibPM.
    
    Signed-off-by: Tejas Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Tejas Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    81abc9b View commit details
    Browse the repository at this point in the history
  203. xillibpm: Changed psu to psv

    Changed psu to psv in file to match recent name changes
    
    Signed-off-by: Nicole Baze <[email protected]>
    Acked-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    Nicole Baze authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    37668c6 View commit details
    Browse the repository at this point in the history
  204. video_common: Modified APIs to take more than 32 bit value

    This patch enables pixel clock parameter range, so that it can accomadate
    more than 32 bit value when user configure for 8k and 10k resolution.
    
    Signed-off-by: Praveen Vuppala <[email protected]>
    
    Acked-by :  Venkateshwar Rao Gannavarapu <[email protected]>
    praveenv authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c776672 View commit details
    Browse the repository at this point in the history
  205. xillibpm: Add CoreOps for setting resume address

    Existing implementation doesn't have any function defined
    to set the resume address of processor core.
    
    Define function pointer in CoreOps to set the resume address of
    processor core.
    
    Signed-off-by: Ravi Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Ravi Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    808f6f7 View commit details
    Browse the repository at this point in the history
  206. xillibpm: Set resume address only after parent power up

    Existing implementation doesn't check for parent power
    status before setting resume address.
    
    Consider an example of resuming of APU from FPD off. With current
    implementation, APU resume address is set before FPD on which doesn't
    get reflected. So after FPD on, APU starts executing from default
    resume vector address (from 0 location) which is invalid address
    if APU is expected to run from other then default address.(e.g. OCM)
    
    Set processor resume address only after parent is powered up.
    
    Signed-off-by: Ravi Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Ravi Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    8076eac View commit details
    Browse the repository at this point in the history
  207. xillibpm: consider POWER_UP_SELF state as POWER OFF state

    Existing housecleaning of power domains expects that node state
    must be POWER_OFF to process further.
    
    The state of FPD node is changed from POWER_OFF to POWER_UP_SELF state
    from state machine internally before powering up FPD. So to add
    support for reloading the FPD CDO before powering on FPD,
    POWER_UP_SELF state needs to be allowed as initial state in
    ousecleaning of power domains.
    
    Signed-off-by: Ravi Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Ravi Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    309fa39 View commit details
    Browse the repository at this point in the history
  208. xilloader: Add support to reload the image partition only

    Add support in xloader to reload only image partition.
    
    Signed-off-by: Ravi Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Ravi Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b472b4f View commit details
    Browse the repository at this point in the history
  209. xillibpm: Reload FPD CDO after powering on FPD

    Reloading of FPD CDO is required after FPD power up to restore
    the FPD context.
    
    Signed-off-by: Ravi Patel <[email protected]>
    
    Acked-for-series: Jolly Shah <[email protected]>
    Ravi Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5beb1fd View commit details
    Browse the repository at this point in the history
  210. sw_apps: memtest: Split the Cache Invalidation for lower and Upper DDR

    This patch resolves the Cache Invalidation issue when the user selects
    Length of the DDR memory to be tested as more than 2GB. This is handled
    by splitting the regions in Lower and Upper DDRs while calling cache
    invalidation API.
    
    Signed-off-by: Manish Narani <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    mnarani authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    047ceb7 View commit details
    Browse the repository at this point in the history
  211. sw_apps: memtest: Simplify the User Interface for Memtest

    This patch makes Memtest User Interface more user friendly in terms of
    Readability and Ease of Use.
    
    Signed-off-by: Manish Narani <[email protected]>
    
    Acked-for-series: Srinivas Goud <[email protected]>
    mnarani authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d182b4a View commit details
    Browse the repository at this point in the history
  212. XilSecure: Resolves cache issue seen with static global variables.

    This patch resolves cache issue seen with static global variables
    in xilsecure_simple_aes_example.
    
    In this example, there are few uninitialized static global variables.
    
    We observed that cache is not updating properly for those variables.
    So, GCM tag received from engine is unpredicted value and seeing
    unexpected output.If we disable the optimization using zynqmp_fsbl_bsp
    flag in the BSP settings, example is giving expected results.
    
    Our analysis on the above issue is static or uninitialized or
    initialized to zero global variables are less cache efficient.
    Hence making those variables as Local.
    
    Signed-off-by: Kalyani Akula <[email protected]>
    Acked-by: VNSL Durga Challa <[email protected]>
    
    Acked-by: VNSL Durga Challa <[email protected]>
    Kalyani Akula authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5ac9bef View commit details
    Browse the repository at this point in the history
  213. Added psm_fw.elf

    Signed-off-by: Siva Addepalli <[email protected]>
    saddepal authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    36a219f View commit details
    Browse the repository at this point in the history
  214. xillibpm: server: Return if clock state is already in desired state

    There is no need to change clock state when it is already in
    desired state. So, just return XST_SUCCESS when clock is already
    in desired state.
    
    This change also fixes below issue:
    Some system clocks are enabled by default and they are not allowed
    to be controlled by user, in such cases user tries to enable it,
    due to permission check enable request will be failed, but as that
    clock is already enabled, clock enable request should not be
    considered as failure.
    
    Signed-off-by: Rajan Vaja <[email protected]>
    Acked-by: Jolly Shah <[email protected]>
    Acked-by: Jolly Shah <[email protected]>
    rajanv-xilinx authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    f84c76f View commit details
    Browse the repository at this point in the history
  215. rfdc: Fixed bug where Internal PLL enabled was wrong for below Gen 3 IPs

    We now discriminate based on IP type
    
    Signed-off-by: Conall O'Griofa <conall.o'[email protected]>
    
    Acked-for-series: Anand Ashok Dumbre <[email protected]>
    Conall O'Griofa authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ca75716 View commit details
    Browse the repository at this point in the history
  216. rfdc: Fixed bug where tile was not restarting after PLL rate change

    The IPSM state was being used in place of the powerup state
    
    Signed-off-by: Conall O'Griofa <conall.o'[email protected]>
    
    Acked-for-series: Anand Ashok Dumbre <[email protected]>
    Conall O'Griofa authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    61c9636 View commit details
    Browse the repository at this point in the history
  217. v_hdmiphy1: DRU Center Frequency configuration is wrong when RX is us…

    …ing QPLL0
    
    Signed-off-by: Eric Bong <[email protected]>
    Acked-by: Yunhai Qiao <[email protected]>
    
    Acked-by: Yunhai Qiao <[email protected]>
    Eric Bong authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    ed8a841 View commit details
    Browse the repository at this point in the history
  218. This patch resolves the 8K syntax error. Updates made to audio inforf…

    …rame type
    
    Signed-off-by: Kapil Usgaonkar <[email protected]>
    
    Acked by : Pankaj Kumbhare <[email protected]>
    Kapil Usgaonkar authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    21a8ac6 View commit details
    Browse the repository at this point in the history
  219. v_frmbuf_rd: Correct the format order in config structure

    The order of formats defined in the config structure and the order in
    the xv_frmbufrd_g.c file are not same. Because of this mismatch some
    formats even though enabled from the GUI are not getting enabled in the
    driver. Corrected the order in the config structure.
    
    Signed-off-by: Vivek Veenam <[email protected]>
    
    Acked by : Siva Rajesh Jarugula <[email protected]>
    Vivek Veenam authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    48c7c61 View commit details
    Browse the repository at this point in the history
  220. sw_services:xilplmi: Fixed the DMA offset issue

    When DMA write command is spread over 2 chunks, offset calculated
    for 2nd DMA is getting wrong. Destination offset calculation is not taking CMD
    params into account. Fixed the offset calculation for DMA write
    commands.
    
    Signed-off-by: Krishna Chaitanya <[email protected]>
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    
    Acked-by: Vikram Sreenivasa Batchali <[email protected]>
    Krishna Chaitanya authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b4d61e2 View commit details
    Browse the repository at this point in the history
  221. Updated the si5324_LOL_GPIO to si5324_LOL1_GPIO

    This patch updates the name of the GPIO
    
    Signed-off-by: S Shreesh <[email protected]>
    
    Acked-by :  Venkateshwar Rao Gannavarapu <[email protected]>
    S Shreesh authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    a89c825 View commit details
    Browse the repository at this point in the history
  222. Updated user pixel width calculation for dual pixel mode.

    This patch updates the pixel width calculation for dual pixel mode.
    
    Signed-off-by: Venkateshwar Rao Gannavarapu <[email protected]>
    
    Acked by : Kapil Usgaonkar <[email protected]>
    Venkateshwar Rao G authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c73bf8f View commit details
    Browse the repository at this point in the history
  223. pciepsu: Adds config check for running examples

    Modifies tcl file to fetch C_PCIE_MODE.
    Adds pciemode parameter to XPciePsu_Config structure.
    Adds mode rc condition check rc example.
    
    Signed-off-by: Tirupathi <[email protected]>
    
    Acked-for-series-by: Venkata Ravi Shankar Jonnalagadda  <[email protected]>
    Tirupathi authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    babf8c7 View commit details
    Browse the repository at this point in the history
  224. pciepsu: Adds Endpoint code

    Adds Header and comments in ep_enable_example.c
    Adds xpciepsu_ep.h
    Adds xpciepsu_ep.c file
    Modifies tcl to add dma base addr
    Adds new variable in xpciepsu structure
    
    Signed-off-by: Tirupathi <[email protected]>
    
    Acked-for-series-by: Venkata Ravi Shankar Jonnalagadda  <[email protected]>
    Tirupathi authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    05ab95f View commit details
    Browse the repository at this point in the history
  225. pciepsu: Fix checkpatch warnings

    splits lines with more than 80 chars.
    fix { warnings for functions and if else conditions
    
    Signed-off-by: Tirupathi <[email protected]>
    
    BRANCH:master
    
    Acked-for-series: Venkata Ravi Shankar Jonnalagadda  <[email protected]>
    Tirupathi authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    22e195d View commit details
    Browse the repository at this point in the history
  226. pciepsu: Add 64-bit destination address support for ingress setup

    Ingress translation supports 64-bit address
    Adding support for 64-bit ingress translation destination address
    
    Signed-off-by: Tirupathi <[email protected]>
    
    BRANCH:master
    
    Acked-for-series: Venkata Ravi Shankar Jonnalagadda  <[email protected]>
    Tirupathi authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0433e1a View commit details
    Browse the repository at this point in the history
  227. pciepsu: Bar assignment bug fix

    Typo error where BarLo was mentioned for BarHi
    Fixes typo
    
    Signed-off-by: Tirupathi <[email protected]>
    
    BRANCH:master
    
    Acked-for-series: Venkata Ravi Shankar Jonnalagadda  <[email protected]>
    Tirupathi authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    f848ef8 View commit details
    Browse the repository at this point in the history
  228. versal_psmfw: Migrate from PSU to PSV

    Change macros used in PSMFW from PSU to PSV
    
    Signed-off-by: Jyotheeswar Reddy Mutthareddyvari <[email protected]>
    Acked-by: Rajan Vaja <[email protected]>
    
    Acked-by: Rajan Vaja <[email protected]>
    Jyotheeswar Reddy authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    0f3ec31 View commit details
    Browse the repository at this point in the history
  229. sw_apps: memtest: Handle cache invalidation for Upper DDR in Eye Tests

    Eye Tests have memory range to be tested of 1MB. So this was not a
    problem for split between Lower and Upper DDR testing together. This
    patch handles the case when User might select the Start Address just
    before the end of the lower DDR Range.
    
    Signed-off-by: Manish Narani <[email protected]>
    Acked-By: Srinivas Goud <[email protected]>
    
    Acked-By: Srinivas Goud <[email protected]>
    mnarani authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    7d8a27f View commit details
    Browse the repository at this point in the history
  230. xdprxss: Removed ACR.Adding 422 420 and RGB 8 bit 10 bi support

    Signed-off-by: Shruti Gupta <[email protected]>
    
    Acked by: Kapil Usgaonkar<[email protected]>
    Shruti Gupta authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    c4db7a0 View commit details
    Browse the repository at this point in the history
  231. video_common: Reverted the patch titled Modified APIs to take more th…

    …an 32 bit value.
    
    Signed-off-by: Eric Bong <[email protected]>
    Acked-by: Yunhai Qiao <[email protected]>
    
    Acked-by: Yunhai Qiao <[email protected]>
    Eric Bong authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    a0a4de0 View commit details
    Browse the repository at this point in the history
  232. Issue Resolve :- After Retraining somtimes HDCP 1.3 Encryption does n…

    …ot works. Fix Made in application files to retrain RX properly
    
    Signed-off-by: Shruti Gupta <[email protected]>
    
    Acked by: Kapil Usgaonkar<[email protected]>
    Shruti Gupta authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    7629123 View commit details
    Browse the repository at this point in the history
  233. lib: standalone: Update PS IP definition macros to migrate from PSU t…

    …o PSV
    
    This patch updates the PS IP definition macros available in the
    xparameters_ps.h file from PSU to PSV.
    
    Signed-off-by: Appana Durga Kedareswara rao <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    kedareswararao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5190d82 View commit details
    Browse the repository at this point in the history
  234. xillibpm: server: Allow INVALID_SUBSYTEMID to be set

    Existing implementation fetches subsystem_id from IPI mask only if
    current subsystem_id is set as INVALID_SUBSYTEMID. The CDO sets
    subsystem_id during start to process other CDO commands in LibPM.
    So after CDO load, every command from IPI is treated for current
    subsystem_id not from IPI mask which is wrong.
    
    As a solution of above, CDO needs to invalidate the subsystem_id
    at the end of CDO, but set_current_subsystem() API doesn't allow
    INVALID_SUBSYTEMID to set.
    
    Allow INVALID_SUBSYTEMID to be set from CDO through
    set_current_subsystem() API.
    
    Signed-off-by: Ravi Patel <[email protected]>
    Acked-by: Jolly Shah <[email protected]>
    
    Acked-by: Jolly Shah <[email protected]>
    Ravi Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    b7a931d View commit details
    Browse the repository at this point in the history
  235. standalone: Added frequently used common functions

    Added frequently used functions in common area, so that other
    modules can make use of it.
    
    Signed-off-by: Mohan Marutirao Dhanawade <[email protected]>
    
    Acked-for-series: Appana Durga Kedareswara rao <[email protected]>
    Mohan Marutirao Dhanawade authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    9c13a92 View commit details
    Browse the repository at this point in the history
  236. xilplmi: Modified OSPI protection macros

    This patch fixes psu->psv as per xparameters.h
    
    Signed-off-by: VNSL Durga Challa <[email protected]>
    Acked-by: Sarat Chand Savitala <[email protected]>
    
    Acked-by: Sarat Chand Savitala <[email protected]>
    VNSL Durga authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    1b3aeb2 View commit details
    Browse the repository at this point in the history
  237. lib: Add support for armclang compiler in xilpm makefile

    armclang archiver needs "-" prefix for archiver flags.
    Update xilpm makefile accordingly.
    
    Signed-off-by: Ravi Patel <[email protected]>
    Acked-by:  Mubin Sayyed <[email protected]>
    
    Acked-by:  Mubin Sayyed <[email protected]>
    Ravi Patel authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    59b8270 View commit details
    Browse the repository at this point in the history
  238. This patch fixes the RX linereset disable issue for 4K@120 resolution…

    … and update for MST application
    
    Signed-off-by: Kapil Usgaonkar <[email protected]>
    
    Acked by : Pankaj Kumbhare <[email protected]>
    Kapil Usgaonkar authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    e58b116 View commit details
    Browse the repository at this point in the history
  239. gpio:example:updated example file for versal.

    Updated xgpiops_polled_example.c file with versal support.
    
    Signed-off-by: Srinivas Neeli <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    Srinivas Neeli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    4491d5e View commit details
    Browse the repository at this point in the history
  240. gpio:src:Updated Makefile for IAR

    updated GPIO Makefile for IAR compiler.
    
    Signed-off-by: Srinivas Neeli <[email protected]>
    
    Acked-for-series: Anirudha Sarangi <[email protected]>
    Srinivas Neeli authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6f06bde View commit details
    Browse the repository at this point in the history
  241. standalone: Fixed armcc compiler specific error

    armcc compiler was not accepting declaring typedef variable in for
    statement. So moved typedef variable definition at start of the function.
    
    Signed-off-by: Mohan Marutirao Dhanawade <[email protected]>
    
    BRANCH:2019.1
    CR-1030701
    Acked-by: Srikanth Vemula <[email protected]>
    
    Acked-by: Srikanth Vemula <[email protected]>
    Mohan Dhanawade authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    6e015c4 View commit details
    Browse the repository at this point in the history
  242. xilmailbox: Rename the library

    This patch renames the library instance name from xilmbox to xilmailbox.
    
    Signed-off-by: Appana Durga Kedareswara rao <[email protected]>
    Acked-by: Nava kishore Manne <[email protected]>
    kedareswararao authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    07af3d8 View commit details
    Browse the repository at this point in the history
  243. Updated version number for xilpm in doc/ChangeLog

    Signed-off-by: Siva Addepalli <[email protected]>
    saddepal authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    238061c View commit details
    Browse the repository at this point in the history
  244. Updated to have latest copyright information

    Signed-off-by: Siva Addepalli <[email protected]>
    saddepal authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    06bbf6d View commit details
    Browse the repository at this point in the history
  245. xilffs: Remove Xilinx Copyright and License text from FatFS source

    This patch removes Xilinx copyright and license text from FatFS source
    files.
    
    Signed-off-by: Manish Narani <[email protected]>
    mnarani authored and Shireesha Kothakonda committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    2ab0ce7 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2019

  1. Fixed Rebase Conflicts

    Signed-off-by: Shireesha Kothakonda <[email protected]>
    Shireesha Kothakonda committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    81c06e0 View commit details
    Browse the repository at this point in the history
  2. Generated Doxygen documentation and PDF's for sw_services

    Signed-off-by: Siva Addepalli <[email protected]>
    saddepal committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    c12743e View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2019

  1. Configuration menu
    Copy the full SHA
    76cf403 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d8d861 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c3f2f87 View commit details
    Browse the repository at this point in the history