Compare commits
3 Commits
boot-test
...
2c74ef7f03
Author | SHA1 | Date | |
---|---|---|---|
2c74ef7f03 | |||
c27ee2215c | |||
ec4e3ec36d |
@ -33,6 +33,9 @@ static inline void kputc(char c)
|
|||||||
while ((int32_t)(*tx) < 0);
|
while ((int32_t)(*tx) < 0);
|
||||||
*tx = c;
|
*tx = c;
|
||||||
#endif
|
#endif
|
||||||
|
volatile uint32_t *term = (void *) 0x64003000; // Terminal (32 bit)
|
||||||
|
while ((int32_t)(*term) < 0);
|
||||||
|
*term = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
extern void kputs(const char *);
|
extern void kputs(const char *);
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#define PAYLOAD_SIZE (16 << 11)
|
#define PAYLOAD_SIZE (16 << 11)
|
||||||
|
|
||||||
#define F_CLK 50000000UL
|
#define F_CLK 60000000UL
|
||||||
|
|
||||||
static volatile uint32_t * const spi = (void *)(SPI_CTRL_ADDR);
|
static volatile uint32_t * const spi = (void *)(SPI_CTRL_ADDR);
|
||||||
|
|
||||||
|
Submodule rocket-chip updated: 6df42fc360...81d631a6a1
@ -21,7 +21,7 @@ class FreedomUML507Config extends Config(
|
|||||||
new WithoutTLMonitors ++
|
new WithoutTLMonitors ++
|
||||||
new WithJtagDTM ++
|
new WithJtagDTM ++
|
||||||
new WithNMemoryChannels(1) ++
|
new WithNMemoryChannels(1) ++
|
||||||
new WithNBigCores(1) ++
|
new WithNSmallLinuxCores(1) ++
|
||||||
new BaseConfig
|
new BaseConfig
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user