Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8e22e8c
Adding source files for LS2088
May 3, 2017
d854be9
Adding FPGA images (A3 and A7)
May 8, 2017
29f1623
Adding patch files for kernel source
May 8, 2017
894cd85
Added u-boot,uimage and device-tree image
May 12, 2017
e488150
Removed FPGA image
May 12, 2017
37b80bf
Added issd_images tar file
May 15, 2017
4f5ba10
Added User Manual and release notes
May 15, 2017
77305cf
Modified the issd_image tar
May 16, 2017
674e2a9
Added Rootfs image
May 16, 2017
caaa990
Removed rootfs image
May 16, 2017
0450007
Added FPGA Source Code
May 22, 2017
2a68390
Added the uimage for M.2 Card setup
Jun 21, 2017
6103621
Added images for M.2 Card setup
Jun 21, 2017
c4377b0
Added M.2 nvme driver patch
Jun 21, 2017
a4658f7
Added M.2 nvme driver patch
Jun 21, 2017
b49cf06
Added FPGA image A7_02_05_01
Jul 5, 2017
d9e201b
Added NVMe Source code
Jul 13, 2017
3659a63
Added ISSD NVMe Controller Application
Jul 14, 2017
f5e6ba2
updation for iSSD Controller
Jul 18, 2017
3363614
Removed README file
Jul 19, 2017
ac2fa76
Upload the FPGA_A3_03_04_01.jic image
Jul 20, 2017
9580245
Modified the Documents and inbound/outbound config
Aug 2, 2017
448c375
Source Code for FPGA_A3_03_04_01
Aug 17, 2017
4a1a89d
Added u-boot image for LS2-M2 Card
Aug 21, 2017
bc19df3
Modification for PEX4 deduction
Aug 21, 2017
a6ec7a3
Fix for PEX4 sync abort
Sep 20, 2017
32a5e68
Fix for pci_rescan and cpu_freq_governor enabled
Sep 20, 2017
6c06f9f
Added the nand_dm application
Sep 27, 2017
05d3ff2
Added nand_dm application
Sep 27, 2017
067bf2a
NAND write change from ab to 00
Oct 3, 2017
15b3051
Added CPLD images
Oct 3, 2017
fb6fcb4
Changed the FPGA image version
Oct 3, 2017
0a3d124
Adding the FPGA Files
Oct 5, 2017
a02f5c0
Adding NAND application binary
Oct 5, 2017
cd1393c
Removed the FPGA image version check
Oct 25, 2017
561ba3c
Added support for DIMM slot changes from M1M3 to M3M4
Nov 3, 2017
58f4d51
Added Flash Management Support
Nov 3, 2017
460b783
Added NVMe user manual
Nov 3, 2017
2fce0f5
Correct the phy_addr in nand_write
Nov 10, 2017
3978c91
Added NAND DIMM Test Application for 8 chips
Dec 8, 2017
d7e5993
Added FPGA_images version 030502
Jan 19, 2018
761c2d7
Merge branch 'LS2088_iSSD' of https://github.com/DFC-OpenSource/DFC-s…
Apr 23, 2018
1efec2f
Added the LS2088A images based on Silicon version of LS2
Oct 3, 2018
61588d4
Added the LS2088A images based on Silicon version of LS2
Oct 3, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file added Documents/LS2_iSSDv2.0_Release_notes_V-1.0.pdf
Binary file not shown.
Binary file added Documents/LS2_iSSDv2.0_Release_notes_V-1.2.pdf
Binary file not shown.
Binary file added Documents/LS2_iSSDv2.0_USER_MANUAL_A00-01.pdf
Binary file not shown.
Binary file added Documents/NVME_USER_MANUAL_A00-01.pdf
Binary file not shown.
Binary file added FPGA_Source_Code/CR_FSLU_NVME_ST5_A7_02_05_01.rar
Binary file not shown.
Binary file added FPGA_Source_Code/FSLU_NVME_ST5_A3_03_04_01.rar
Binary file not shown.
Binary file added FPGA_Source_Code/ST5_A7_03_04_00_SRC.rar
Binary file not shown.
Binary file added FPGA_Source_Code/fpga_03.01.00_source_code
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 10 additions & 0 deletions NVMe/host_drivers/x86_host_3.13_nvme_driver/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#nvme-core-objs=nvme-core.o nvme-scsi.o
obj-m = nvme.o
nvme-y = nvme-core.o nvme-scsi.o
KVERSION = $(shell uname -r)
all:
make -C /lib/modules/$(KVERSION)/build M=$(shell pwd) modules
# make -C /lib/modules/$(KVERSION)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(KVERSION)/build M=$(shell pwd) clean
# make -C /lib/modules/$(KVERSION)/build M=$(PWD) clean
Loading