-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b49c489
commit 8bcc384
Showing
4 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#include <fel.h> | ||
|
||
static int chip_detect(struct xfel_ctx_t * ctx, uint32_t id) | ||
{ | ||
if(id == 0x00175500) | ||
return 1; | ||
return 0; | ||
} | ||
|
||
static int chip_reset(struct xfel_ctx_t * ctx) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int chip_sid(struct xfel_ctx_t * ctx, char * sid) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int chip_jtag(struct xfel_ctx_t * ctx) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int chip_ddr(struct xfel_ctx_t * ctx, const char * type) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int chip_spi_init(struct xfel_ctx_t * ctx, uint32_t * swapbuf, uint32_t * swaplen, uint32_t * cmdlen) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int chip_spi_run(struct xfel_ctx_t * ctx, uint8_t * cbuf, uint32_t clen) | ||
{ | ||
return 0; | ||
} | ||
|
||
struct chip_t a50 = { | ||
.name = "A50", | ||
.detect = chip_detect, | ||
.reset = chip_reset, | ||
.sid = chip_sid, | ||
.jtag = chip_jtag, | ||
.ddr = chip_ddr, | ||
.spi_init = chip_spi_init, | ||
.spi_run = chip_spi_run, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters