embeddedsw/XilinxProcessorIPLib/drivers/nandps8_v2_0/intgTest
Suneel Garapati 0ae197d5e4 all: make source code non-executable
Changes -
find -name "*.h" -exec chmod a-x '{}' ';'
find -name "*.c" -exec chmod a-x '{}' ';'
find -name "*.S" -exec chmod a-x '{}' ';'
find -name "*.ld" -exec chmod a-x '{}' ';'
find -name Makefile -exec chmod a-x '{}' ';'

Signed-off-by: Suneel Garapati <suneel.garapati@xilinx.com>
2014-12-17 15:13:03 +05:30
..
ct.h all: make source code non-executable 2014-12-17 15:13:03 +05:30
ct_standalone.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg.h all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg_ecc_test.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg_erase_read.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg_flash_rw.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg_partialpage_rw.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg_random_rw.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
intg_sparebytes_rw.c all: make source code non-executable 2014-12-17 15:13:03 +05:30
README.txt nandps8_v2_0: Driver for nand controller in Zynq Ultrascale Mp. 2014-12-09 20:32:14 +05:30
xil_testlib.h all: make source code non-executable 2014-12-17 15:13:03 +05:30

NandPs8 Integration test

- On A53 processors use the linker script for DDR region to run the integration test
  With OCM linker script which is the default linker script, the integration test may hang.
  In order to run on OCM, you can use Xil_DCacheDisable() in the main and run the integration test.

- On R5 processors, you may get compilation error for bsp stating "undefined reference to `end'"
  Add end = .;  at the end of the linker script to remove this error

  } > ps8_ocm_ram_0_S_AXI_BASEADDR

  _end = .;
  end = .;
}