Merge branch 'master' of github.com:mossmann/hackrf
This commit is contained in:
@ -24,7 +24,7 @@
|
||||
MEMORY
|
||||
{
|
||||
/* rom is really the shadow region that points to SPI flash or elsewhere */
|
||||
rom (rx) : ORIGIN = 0x00000000, LENGTH = 1M
|
||||
rom (rx) : ORIGIN = 0x14000000, LENGTH = 1M
|
||||
ram (rwx) : ORIGIN = 0x10000000, LENGTH = 128K
|
||||
/* there are some additional RAM regions */
|
||||
}
|
||||
|
@ -4,6 +4,8 @@ BINARY = sgpio
|
||||
|
||||
SRC = $(BINARY).c \
|
||||
../common/hackrf_core.c \
|
||||
../common/si5351c.c
|
||||
../common/si5351c.c \
|
||||
../common/max2837.c \
|
||||
../common/max5864.c
|
||||
|
||||
include ../common/Makefile_inc.mk
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include <libopencm3/cm3/scs.h>
|
||||
|
||||
#include <hackrf_core.h>
|
||||
#include <max5864.h>
|
||||
|
||||
void pin_setup(void) {
|
||||
/* Configure SCU Pin Mux as GPIO */
|
||||
@ -286,6 +287,7 @@ int main(void) {
|
||||
pin_setup();
|
||||
enable_1v8_power();
|
||||
cpu_clock_init();
|
||||
ssp1_init();
|
||||
|
||||
CGU_BASE_PERIPH_CLK = (CGU_BASE_CLK_AUTOBLOCK
|
||||
| (CGU_SRC_PLL1 << CGU_BASE_CLK_SEL_SHIFT));
|
||||
@ -293,10 +295,10 @@ int main(void) {
|
||||
CGU_BASE_APB1_CLK = (CGU_BASE_CLK_AUTOBLOCK
|
||||
| (CGU_SRC_PLL1 << CGU_BASE_CLK_SEL_SHIFT));
|
||||
|
||||
gpio_set(PORT_LED1_3, (PIN_LED1 | PIN_LED2 | PIN_LED3)); /* LEDs on */
|
||||
gpio_set(PORT_LED1_3, PIN_LED1);
|
||||
|
||||
//test_sgpio_interface();
|
||||
configure_sgpio_test_rx();
|
||||
ssp1_set_mode_max5864();
|
||||
max5864_xcvr();
|
||||
|
||||
while (1) {
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2010 - 2012 Michael Ossmann
|
||||
* Copyright 2012 Benjamin Vernoux
|
||||
*
|
||||
* This file is part of HackRF.
|
||||
*
|
||||
@ -64,7 +64,7 @@ void systick_setup(void)
|
||||
g_ulSysTickCount = 0;
|
||||
|
||||
/* Disable IRQ globally */
|
||||
asm volatile ("cpsid i");
|
||||
__asm__("cpsid i");
|
||||
|
||||
/* Set processor Clock as Source Clock */
|
||||
systick_set_clocksource(STK_CTRL_CLKSOURCE);
|
||||
@ -90,7 +90,7 @@ void systick_setup(void)
|
||||
nvic_set_priority(NVIC_SYSTICK_IRQ, 0xFF);
|
||||
|
||||
/* Enable IRQ globally */
|
||||
asm volatile ("cpsie i");
|
||||
__asm__("cpsie i");
|
||||
}
|
||||
|
||||
void scs_dwt_cycle_counter_enabled(void)
|
||||
@ -153,141 +153,6 @@ void sys_tick_handler(void)
|
||||
g_ulSysTickCount++;
|
||||
}
|
||||
|
||||
u32 test_nb_instruction_per_sec(void)
|
||||
{
|
||||
u32 start, end, wait_ms;
|
||||
u32 tickms;
|
||||
u32 nb_instructions_per_sec;
|
||||
|
||||
nb_instructions_per_sec = 0;
|
||||
wait_ms = 1000;
|
||||
|
||||
start = sys_tick_get_time_ms();
|
||||
|
||||
do
|
||||
{
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
nb_instructions_per_sec += 108;
|
||||
|
||||
end = sys_tick_get_time_ms();
|
||||
tickms = sys_tick_delta_time_ms(start, end);
|
||||
}while(tickms < wait_ms);
|
||||
|
||||
return nb_instructions_per_sec;
|
||||
}
|
||||
|
||||
|
||||
u32 nb_inst_per_sec0;
|
||||
u32 nb_inst_per_sec1;
|
||||
|
||||
int main(void)
|
||||
{
|
||||
gpio_setup();
|
||||
@ -300,10 +165,6 @@ int main(void)
|
||||
|
||||
systick_setup();
|
||||
|
||||
/* Test number of instruction per second */
|
||||
nb_inst_per_sec0 = test_nb_instruction_per_sec();
|
||||
nb_inst_per_sec1 = test_nb_instruction_per_sec();
|
||||
|
||||
gpio_set(PORT_LED1_3, (PIN_LED1|PIN_LED2|PIN_LED3)); /* LEDs on */
|
||||
|
||||
while (1)
|
||||
|
10
firmware/startup_systick_perfo/Makefile
Normal file
10
firmware/startup_systick_perfo/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
# Hey Emacs, this is a -*- makefile -*-
|
||||
|
||||
BINARY = startup_systick_perfo_SPIFI
|
||||
|
||||
SRC = startup_systick.c \
|
||||
perf_mips.c \
|
||||
../common/hackrf_core.c \
|
||||
../common/si5351c.c
|
||||
|
||||
include ../common/Makefile_inc.mk
|
17
firmware/startup_systick_perfo/README
Normal file
17
firmware/startup_systick_perfo/README
Normal file
@ -0,0 +1,17 @@
|
||||
This program is an example of the startup sequence for HackRF (Jellybean with
|
||||
Lemondrop attached).
|
||||
Test number of instruction per second (MIPS) slow blink ON 1s, OFF 1s
|
||||
Then after 16s (the 16tests) it blink LED1/2/3 ON/OFF each 250ms.
|
||||
This example compute the number of instructions per second executed called also MIPS (Millions of Instructions Per Second)
|
||||
|
||||
This example code run from SPIFI (SPI Quad mode) and the tests check different loop size to compute the cache size used with SPIFI and estimated to less than 256Bytes (about 128 instructions in best case and in Thumb2).
|
||||
See result_exec_from_SPIFI.txt for more details.
|
||||
|
||||
Required Lemondrop -> Jellybean connections:
|
||||
|
||||
SCL: Lemondrop P7 pin 3 -> Jellybean P6 pin 3
|
||||
SDA: Lemondrop P7 pin 5 -> Jellybean P6 pin 5
|
||||
SDA: Lemondrop P7 pin 6 -> Jellybean P6 pin 6
|
||||
VCC: Lemondrop P4 pin 2, 4, or 6 -> Jellybean P17 pin 2, 4, or 6
|
||||
1V8: Lemondrop P11 pin 2, 4, or 6 -> Jellybean P16 pin 2, 4, or 6
|
||||
GND: Lemondrop P5 -> Jellybean P13
|
2220
firmware/startup_systick_perfo/perf_mips.c
Normal file
2220
firmware/startup_systick_perfo/perf_mips.c
Normal file
File diff suppressed because it is too large
Load Diff
33
firmware/startup_systick_perfo/result_exec_from_SPIFI.txt
Normal file
33
firmware/startup_systick_perfo/result_exec_from_SPIFI.txt
Normal file
@ -0,0 +1,33 @@
|
||||
Frequency MCU Core M4 = 204MHz
|
||||
|
||||
"nb_inst_per_sec" 0x10000008
|
||||
nb_inst_per_sec[0] 195609816 test_nb_instruction_per_sec_100_nop_asm();
|
||||
nb_inst_per_sec[1] 195577462 test_nb_instruction_per_sec_105_nop_asm();
|
||||
nb_inst_per_sec[2] 195525410 test_nb_instruction_per_sec_110_nop_asm();
|
||||
nb_inst_per_sec[3] 35423508 test_nb_instruction_per_sec_115_nop_asm();
|
||||
nb_inst_per_sec[4] 5058688 test_nb_instruction_per_sec_120_nop_asm();
|
||||
nb_inst_per_sec[5] 5094868 test_nb_instruction_per_sec_150_nop_asm();
|
||||
nb_inst_per_sec[6] 5162144 test_nb_instruction_per_sec_200_nop_asm();
|
||||
nb_inst_per_sec[7] 5505696 test_nb_instruction_per_sec_1000_nop_asm();
|
||||
|
||||
nb_inst_per_sec[8] 195600420 test_nb_instruction_per_sec_100_nop_asm();
|
||||
nb_inst_per_sec[9] 195578027 test_nb_instruction_per_sec_105_nop_asm();
|
||||
nb_inst_per_sec[10] 195525882 test_nb_instruction_per_sec_110_nop_asm();
|
||||
nb_inst_per_sec[11] 35422647 test_nb_instruction_per_sec_115_nop_asm();
|
||||
nb_inst_per_sec[12] 5058688 test_nb_instruction_per_sec_120_nop_asm();
|
||||
nb_inst_per_sec[13] 5094868 test_nb_instruction_per_sec_150_nop_asm();
|
||||
nb_inst_per_sec[14] 5162144 test_nb_instruction_per_sec_200_nop_asm();
|
||||
nb_inst_per_sec[15] 5505696 test_nb_instruction_per_sec_1000_nop_asm();
|
||||
|
||||
Real speed expected from SPIFI without cache (with lot of nop)
|
||||
Oscilloscope Freq SPIFI SCK = 22.50MHz to 22.83MHz (in reality 22.67MHz => 204/9 => SPIFI_CLK connected to IDIVB & IDIVB default=9)
|
||||
So worst case 22.50Mbits*4 = 90Mbits/s => 11.25MBytes/s with an overhead of about 50% due to SPIFI protocol addr ... => 5.625MB
|
||||
1 nop = 2 bytes (THUMB 0x00 0xBF) => Max 5.625 Millions instruction per second
|
||||
|
||||
110 NOP is in fact 110 + 9 (including loop overhead)
|
||||
119*2 = 238 bytes
|
||||
|
||||
115NOP + 9 => does not enter in cache !! (248bytes)
|
||||
Internal Cache size is about 256Bytes maybe shared Code/Data.
|
||||
|
||||
SPIFI obtained min=5.05 MIPS, max=195.6 MIPS
|
@ -64,7 +64,7 @@ void systick_setup(void)
|
||||
g_ulSysTickCount = 0;
|
||||
|
||||
/* Disable IRQ globally */
|
||||
asm volatile ("cpsid i");
|
||||
__asm__("cpsid i");
|
||||
|
||||
/* Set processor Clock as Source Clock */
|
||||
systick_set_clocksource(STK_CTRL_CLKSOURCE);
|
||||
@ -90,7 +90,7 @@ void systick_setup(void)
|
||||
nvic_set_priority(NVIC_SYSTICK_IRQ, 0xFF);
|
||||
|
||||
/* Enable IRQ globally */
|
||||
asm volatile ("cpsie i");
|
||||
__asm__("cpsie i");
|
||||
}
|
||||
|
||||
void scs_dwt_cycle_counter_enabled(void)
|
||||
@ -153,140 +153,18 @@ void sys_tick_handler(void)
|
||||
g_ulSysTickCount++;
|
||||
}
|
||||
|
||||
u32 test_nb_instruction_per_sec(void)
|
||||
{
|
||||
u32 start, end, wait_ms;
|
||||
u32 tickms;
|
||||
u32 nb_instructions_per_sec;
|
||||
u32 nb_inst_per_sec[16];
|
||||
|
||||
nb_instructions_per_sec = 0;
|
||||
wait_ms = 1000;
|
||||
extern u32 test_nb_instruction_per_sec_100_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_105_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_110_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_115_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_120_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_150_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_200_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_1000_nop_asm();
|
||||
|
||||
start = sys_tick_get_time_ms();
|
||||
|
||||
do
|
||||
{
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
asm volatile ("nop ");
|
||||
nb_instructions_per_sec += 100;
|
||||
|
||||
end = sys_tick_get_time_ms();
|
||||
tickms = sys_tick_delta_time_ms(start, end);
|
||||
}while(tickms < wait_ms);
|
||||
|
||||
return nb_instructions_per_sec;
|
||||
}
|
||||
|
||||
|
||||
u32 nb_inst_per_sec0;
|
||||
u32 nb_inst_per_sec1;
|
||||
#define LED1_TOGGLE() (gpio_toggle(PORT_LED1_3, (PIN_LED1)))
|
||||
|
||||
int main(void)
|
||||
{
|
||||
@ -300,25 +178,57 @@ int main(void)
|
||||
|
||||
systick_setup();
|
||||
|
||||
/* Test number of instruction per second */
|
||||
nb_inst_per_sec0 = test_nb_instruction_per_sec();
|
||||
nb_inst_per_sec1 = test_nb_instruction_per_sec();
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED1)); /* LED1 off */
|
||||
|
||||
gpio_set(PORT_LED1_3, (PIN_LED1|PIN_LED2|PIN_LED3)); /* LEDs on */
|
||||
/* Test number of instruction per second (MIPS) slow blink ON 1s, OFF 1s */
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[0] = test_nb_instruction_per_sec_100_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[1]= test_nb_instruction_per_sec_105_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[2]= test_nb_instruction_per_sec_110_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[3]= test_nb_instruction_per_sec_115_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[4] = test_nb_instruction_per_sec_120_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[5] = test_nb_instruction_per_sec_150_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[6] = test_nb_instruction_per_sec_200_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[7] = test_nb_instruction_per_sec_1000_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[8] = test_nb_instruction_per_sec_100_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[9]= test_nb_instruction_per_sec_105_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[10]= test_nb_instruction_per_sec_110_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[11]= test_nb_instruction_per_sec_115_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[12] = test_nb_instruction_per_sec_120_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[13] = test_nb_instruction_per_sec_150_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[14] = test_nb_instruction_per_sec_200_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[15] = test_nb_instruction_per_sec_1000_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
|
||||
/* Test finished fast blink */
|
||||
while (1)
|
||||
{
|
||||
gpio_set(PORT_LED1_3, (PIN_LED1)); /* LED1 on */
|
||||
gpio_set(PORT_LED1_3, (PIN_LED2)); /* LED2 on */
|
||||
gpio_set(PORT_LED1_3, (PIN_LED3)); /* LED3 on */
|
||||
|
||||
sys_tick_wait_time_ms(500);
|
||||
sys_tick_wait_time_ms(250);
|
||||
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED3)); /* LED3 off */
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED2)); /* LED2 off */
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED1)); /* LED1 off */
|
||||
|
||||
sys_tick_wait_time_ms(500);
|
||||
sys_tick_wait_time_ms(250);
|
||||
}
|
||||
|
||||
return 0;
|
@ -1,8 +1,9 @@
|
||||
# Hey Emacs, this is a -*- makefile -*-
|
||||
|
||||
BINARY = startup_systick
|
||||
BINARY = startup_systick_perfo_rom_to_ram
|
||||
|
||||
SRC = $(BINARY).c \
|
||||
SRC = startup_systick.c \
|
||||
perf_mips.c \
|
||||
../common/hackrf_core.c \
|
||||
../common/si5351c.c
|
||||
|
@ -1,6 +1,11 @@
|
||||
This program is an example of the startup sequence for HackRF (Jellybean with
|
||||
Lemondrop attached).
|
||||
LED1, LED2, and LED3 are blinking at exactly a frequency of 1Hz upon success.
|
||||
Test number of instruction per second (MIPS) slow blink ON 1s, OFF 1s
|
||||
Then after 16s (the 16tests) it blink LED1/2/3 ON/OFF each 250ms.
|
||||
This example compute the number of instructions per second executed called also MIPS (Millions of Instructions Per Second)
|
||||
|
||||
This example code run from SRAM so maximum performance expected is 204MIPS.
|
||||
See result details in result_exec_from_SRAM.txt
|
||||
|
||||
Required Lemondrop -> Jellybean connections:
|
||||
|
2220
firmware/startup_systick_perfo_rom_to_ram/perf_mips.c
Normal file
2220
firmware/startup_systick_perfo_rom_to_ram/perf_mips.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,22 @@
|
||||
Frequency MCU Core M4 = 204MHz
|
||||
|
||||
"nb_inst_per_sec" 0x10080008
|
||||
nb_inst_per_sec[0] 202091544 test_nb_instruction_per_sec_100_nop_asm();
|
||||
nb_inst_per_sec[1] 202172820 test_nb_instruction_per_sec_105_nop_asm();
|
||||
nb_inst_per_sec[2] 202247988 test_nb_instruction_per_sec_110_nop_asm();
|
||||
nb_inst_per_sec[3] 202317165 test_nb_instruction_per_sec_115_nop_asm();
|
||||
nb_inst_per_sec[4] 202381696 test_nb_instruction_per_sec_120_nop_asm();
|
||||
nb_inst_per_sec[5] 202680030 test_nb_instruction_per_sec_150_nop_asm();
|
||||
nb_inst_per_sec[6] 202986160 test_nb_instruction_per_sec_200_nop_asm();
|
||||
nb_inst_per_sec[7] 203760144 test_nb_instruction_per_sec_1000_nop_asm();
|
||||
|
||||
nb_inst_per_sec[8] 202091220 test_nb_instruction_per_sec_100_nop_asm();
|
||||
nb_inst_per_sec[9] 202172820 test_nb_instruction_per_sec_105_nop_asm();
|
||||
nb_inst_per_sec[10] 202247988 test_nb_instruction_per_sec_110_nop_asm();
|
||||
nb_inst_per_sec[11] 202317165 test_nb_instruction_per_sec_115_nop_asm();
|
||||
nb_inst_per_sec[12] 202381696 test_nb_instruction_per_sec_120_nop_asm();
|
||||
nb_inst_per_sec[13] 202680030 test_nb_instruction_per_sec_150_nop_asm();
|
||||
nb_inst_per_sec[14] 202986160 test_nb_instruction_per_sec_200_nop_asm();
|
||||
nb_inst_per_sec[15] 203760144 test_nb_instruction_per_sec_1000_nop_asm();
|
||||
|
||||
SRAM execution, expected 204 MIPS best case obtained min=202 MIPS, max=203.7 MIPS
|
235
firmware/startup_systick_perfo_rom_to_ram/startup_systick.c
Normal file
235
firmware/startup_systick_perfo_rom_to_ram/startup_systick.c
Normal file
@ -0,0 +1,235 @@
|
||||
/*
|
||||
* Copyright 2010 - 2012 Michael Ossmann
|
||||
*
|
||||
* This file is part of HackRF.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 51 Franklin Street,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include <libopencm3/lpc43xx/gpio.h>
|
||||
#include <libopencm3/lpc43xx/scu.h>
|
||||
#include <libopencm3/lpc43xx/i2c.h>
|
||||
#include <libopencm3/lpc43xx/nvic.h>
|
||||
#include <libopencm3/lpc43xx/systick.h>
|
||||
#include <libopencm3/cm3/scs.h>
|
||||
|
||||
#include "hackrf_core.h"
|
||||
|
||||
/* Global counter incremented by SysTick Interrupt each millisecond */
|
||||
volatile u32 g_ulSysTickCount;
|
||||
u32 g_NbCyclePerSecond;
|
||||
|
||||
void gpio_setup(void)
|
||||
{
|
||||
/* Configure SCU Pin Mux as GPIO */
|
||||
scu_pinmux(SCU_PINMUX_LED1, SCU_GPIO_FAST);
|
||||
scu_pinmux(SCU_PINMUX_LED2, SCU_GPIO_FAST);
|
||||
scu_pinmux(SCU_PINMUX_LED3, SCU_GPIO_FAST);
|
||||
|
||||
scu_pinmux(SCU_PINMUX_EN1V8, SCU_GPIO_FAST);
|
||||
|
||||
/* Configure all GPIO as Input (safe state) */
|
||||
GPIO0_DIR = 0;
|
||||
GPIO1_DIR = 0;
|
||||
GPIO2_DIR = 0;
|
||||
GPIO3_DIR = 0;
|
||||
GPIO4_DIR = 0;
|
||||
GPIO5_DIR = 0;
|
||||
GPIO6_DIR = 0;
|
||||
GPIO7_DIR = 0;
|
||||
|
||||
/* Configure GPIO2[1/2/8] (P4_1/2 P6_12) as output. */
|
||||
GPIO2_DIR |= (PIN_LED1|PIN_LED2|PIN_LED3);
|
||||
|
||||
/* GPIO3[6] on P6_10 as output. */
|
||||
GPIO3_DIR |= PIN_EN1V8;
|
||||
}
|
||||
|
||||
void systick_setup(void)
|
||||
{
|
||||
u32 systick_reload_val;
|
||||
g_ulSysTickCount = 0;
|
||||
|
||||
/* Disable IRQ globally */
|
||||
__asm__("cpsid i");
|
||||
|
||||
/* Set processor Clock as Source Clock */
|
||||
systick_set_clocksource(STK_CTRL_CLKSOURCE);
|
||||
|
||||
/* Get SysTick calibration value to obtain by default 1 tick = 10ms */
|
||||
systick_reload_val = systick_get_calib();
|
||||
/*
|
||||
* Calibration seems wrong on LPC43xx(TBC) for default Freq it assume System Clock is 12MHz but it is 12*17=204MHz
|
||||
* Fix the Calibration value bu multiplication by 17
|
||||
*/
|
||||
systick_reload_val = (systick_reload_val*17);
|
||||
|
||||
/* To obtain 1ms per tick just divide by 10 the 10ms base tick and set the reload */
|
||||
systick_reload_val = systick_reload_val/10;
|
||||
systick_set_reload(systick_reload_val);
|
||||
|
||||
systick_interrupt_enable();
|
||||
|
||||
/* Start counting. */
|
||||
systick_counter_enable();
|
||||
|
||||
/* Set SysTick Priority to maximum */
|
||||
nvic_set_priority(NVIC_SYSTICK_IRQ, 0xFF);
|
||||
|
||||
/* Enable IRQ globally */
|
||||
__asm__("cpsie i");
|
||||
}
|
||||
|
||||
void scs_dwt_cycle_counter_enabled(void)
|
||||
{
|
||||
SCS_DEMCR |= SCS_DEMCR_TRCENA;
|
||||
SCS_DWT_CTRL |= SCS_DWT_CTRL_CYCCNTENA;
|
||||
}
|
||||
|
||||
u32 sys_tick_get_time_ms(void)
|
||||
{
|
||||
return g_ulSysTickCount;
|
||||
}
|
||||
|
||||
u32 sys_tick_delta_time_ms(u32 start, u32 end)
|
||||
{
|
||||
#define MAX_T_U32 ((2^32)-1)
|
||||
u32 diff;
|
||||
|
||||
if(end > start)
|
||||
{
|
||||
diff=end-start;
|
||||
}else
|
||||
{
|
||||
diff=MAX_T_U32-(start-end)+1;
|
||||
}
|
||||
|
||||
return diff;
|
||||
}
|
||||
|
||||
void sys_tick_wait_time_ms(u32 wait_ms)
|
||||
{
|
||||
u32 start, end;
|
||||
u32 tickms;
|
||||
|
||||
start = sys_tick_get_time_ms();
|
||||
|
||||
do
|
||||
{
|
||||
end = sys_tick_get_time_ms();
|
||||
tickms = sys_tick_delta_time_ms(start, end);
|
||||
}while(tickms < wait_ms);
|
||||
}
|
||||
|
||||
/* Called each 1ms/1000Hz by interrupt
|
||||
1) Count the number of cycle per second.
|
||||
2) Increment g_ulSysTickCount counter.
|
||||
*/
|
||||
void sys_tick_handler(void)
|
||||
{
|
||||
if(g_ulSysTickCount==0)
|
||||
{
|
||||
/* Clear Cycle Counter*/
|
||||
SCS_DWT_CYCCNT = 0;
|
||||
}else if(g_ulSysTickCount==1000)
|
||||
{
|
||||
/* Capture number of cycle elapsed during 1 second */
|
||||
g_NbCyclePerSecond = SCS_DWT_CYCCNT;
|
||||
}
|
||||
|
||||
g_ulSysTickCount++;
|
||||
}
|
||||
|
||||
u32 nb_inst_per_sec[16];
|
||||
|
||||
extern u32 test_nb_instruction_per_sec_100_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_105_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_110_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_115_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_120_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_150_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_200_nop_asm();
|
||||
extern u32 test_nb_instruction_per_sec_1000_nop_asm();
|
||||
|
||||
#define LED1_TOGGLE() (gpio_toggle(PORT_LED1_3, (PIN_LED1)))
|
||||
|
||||
int main(void)
|
||||
{
|
||||
gpio_setup();
|
||||
|
||||
gpio_set(PORT_EN1V8, PIN_EN1V8); /* 1V8 on */
|
||||
|
||||
cpu_clock_init();
|
||||
|
||||
scs_dwt_cycle_counter_enabled();
|
||||
|
||||
systick_setup();
|
||||
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED1)); /* LED1 off */
|
||||
|
||||
/* Test number of instruction per second (MIPS) slow blink ON 1s, OFF 1s */
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[0] = test_nb_instruction_per_sec_100_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[1]= test_nb_instruction_per_sec_105_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[2]= test_nb_instruction_per_sec_110_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[3]= test_nb_instruction_per_sec_115_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[4] = test_nb_instruction_per_sec_120_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[5] = test_nb_instruction_per_sec_150_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[6] = test_nb_instruction_per_sec_200_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[7] = test_nb_instruction_per_sec_1000_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[8] = test_nb_instruction_per_sec_100_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[9]= test_nb_instruction_per_sec_105_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[10]= test_nb_instruction_per_sec_110_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[11]= test_nb_instruction_per_sec_115_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[12] = test_nb_instruction_per_sec_120_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[13] = test_nb_instruction_per_sec_150_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[14] = test_nb_instruction_per_sec_200_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
nb_inst_per_sec[15] = test_nb_instruction_per_sec_1000_nop_asm();
|
||||
LED1_TOGGLE();
|
||||
|
||||
/* Test finished fast blink */
|
||||
while (1)
|
||||
{
|
||||
gpio_set(PORT_LED1_3, (PIN_LED1)); /* LED1 on */
|
||||
gpio_set(PORT_LED1_3, (PIN_LED2)); /* LED2 on */
|
||||
gpio_set(PORT_LED1_3, (PIN_LED3)); /* LED3 on */
|
||||
|
||||
sys_tick_wait_time_ms(250);
|
||||
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED3)); /* LED3 off */
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED2)); /* LED2 off */
|
||||
gpio_clear(PORT_LED1_3, (PIN_LED1)); /* LED1 off */
|
||||
|
||||
sys_tick_wait_time_ms(250);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
201
hardware/lollipop/lollipop_logic.py
Executable file
201
hardware/lollipop/lollipop_logic.py
Executable file
@ -0,0 +1,201 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Copyright (C) 2012 Jared Boone
|
||||
#
|
||||
# This file is part of HackRF.
|
||||
#
|
||||
# This is a free hardware design; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This design is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this design; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, Inc., 51 Franklin Street,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
#
|
||||
|
||||
# This program is used to verify the logic on the Lollipop board, to
|
||||
# make sure control of the various RF paths is correct.
|
||||
|
||||
class Component(object):
|
||||
def __init__(self, **kwargs):
|
||||
self.state = kwargs
|
||||
|
||||
def __repr__(self):
|
||||
state_key = ''.join(
|
||||
map(str,
|
||||
map(int,
|
||||
(self.state[input] for input in self.inputs)
|
||||
)
|
||||
)
|
||||
)
|
||||
if state_key not in self.states:
|
||||
return 'Invalid'
|
||||
else:
|
||||
return self.functions[self.states[state_key]]
|
||||
|
||||
class SKY13317(Component):
|
||||
inputs = (
|
||||
'V1',
|
||||
'V2',
|
||||
'V3',
|
||||
)
|
||||
|
||||
states = {
|
||||
# V1, V2, V3
|
||||
'100': 'RFC to RF1',
|
||||
'010': 'RFC to RF2',
|
||||
'001': 'RFC to RF3',
|
||||
}
|
||||
|
||||
class SKY13351(Component):
|
||||
inputs = (
|
||||
'VCTL1',
|
||||
'VCTL2',
|
||||
)
|
||||
|
||||
states = {
|
||||
# VCTL1, VCTL2
|
||||
'01': 'INPUT to OUTPUT1',
|
||||
'10': 'INPUT to OUTPUT2',
|
||||
}
|
||||
|
||||
class U2_4(SKY13351):
|
||||
name = 'U2/4'
|
||||
functions = {
|
||||
'INPUT to OUTPUT1': 'tx bandpass',
|
||||
'INPUT to OUTPUT2': 'tx mixer'
|
||||
}
|
||||
|
||||
class U6_9(SKY13351):
|
||||
name = 'U6/9'
|
||||
functions = {
|
||||
'INPUT to OUTPUT1': 'tx lowpass',
|
||||
'INPUT to OUTPUT2': 'tx highpass',
|
||||
}
|
||||
|
||||
class U3(SKY13317):
|
||||
name = 'U3'
|
||||
functions = {
|
||||
'RFC to RF1': 'tx highpass',
|
||||
'RFC to RF2': 'tx lowpass',
|
||||
'RFC to RF3': 'tx bandpass',
|
||||
}
|
||||
|
||||
class U7(SKY13351):
|
||||
name = 'U7'
|
||||
functions = {
|
||||
'INPUT to OUTPUT1': 'rx switch',
|
||||
'INPUT to OUTPUT2': 'tx path',
|
||||
}
|
||||
|
||||
class U10(SKY13351):
|
||||
name = 'U10'
|
||||
functions = {
|
||||
'INPUT to OUTPUT1': 'tx/rx switch',
|
||||
'INPUT to OUTPUT2': 'rx antenna',
|
||||
}
|
||||
|
||||
class U15(SKY13317):
|
||||
name = 'U15'
|
||||
functions = {
|
||||
'RFC to RF1': 'rx bandpass',
|
||||
'RFC to RF2': 'rx highpass',
|
||||
'RFC to RF3': 'rx lowpass',
|
||||
}
|
||||
|
||||
class U12_14(SKY13351):
|
||||
name = 'U12/14'
|
||||
functions = {
|
||||
'INPUT to OUTPUT1': 'rx lowpass',
|
||||
'INPUT to OUTPUT2': 'rx highpass',
|
||||
}
|
||||
|
||||
class U16_18(SKY13351):
|
||||
name = 'U16/18'
|
||||
functions = {
|
||||
'INPUT to OUTPUT1': 'rx mixer',
|
||||
'INPUT to OUTPUT2': 'rx bandpass',
|
||||
}
|
||||
|
||||
def compute_logic(**inputs):
|
||||
outputs = dict(inputs)
|
||||
outputs['swtxb2'] = not inputs['swtxb1']
|
||||
outputs['swrxb2'] = not inputs['swrxb1']
|
||||
outputs['swtxa2'] = not inputs['swtxa1']
|
||||
outputs['swrxa2'] = not inputs['swrxa1']
|
||||
outputs['swd2'] = not inputs['swd1']
|
||||
outputs['swrxv2'] = outputs['swrxb2'] and outputs['swrxa1']
|
||||
outputs['swrxv3'] = outputs['swrxb2'] and outputs['swrxa2']
|
||||
outputs['swtxv1'] = outputs['swtxa1'] and outputs['swtxb1']
|
||||
outputs['swtxv2'] = outputs['swtxa2'] and outputs['swtxb1']
|
||||
|
||||
# Force boolean True/False (result of "not" operator) to 1 or 0.
|
||||
for key in outputs:
|
||||
outputs[key] = int(outputs[key])
|
||||
|
||||
return outputs
|
||||
|
||||
def print_signals(signals):
|
||||
print(', '.join(('%s=%s' % (name, signals[name]) for name in sorted(signals))))
|
||||
|
||||
def print_circuit_state(signals):
|
||||
components = (
|
||||
U2_4(VCTL1=signals['swtxb1'], VCTL2=signals['swtxb2']),
|
||||
U6_9(VCTL1=signals['swtxa1'], VCTL2=signals['swtxa2']),
|
||||
U3(V1=signals['swtxv1'], V2=signals['swtxv2'], V3=signals['swtxb2']),
|
||||
U7(VCTL1=signals['swd2'], VCTL2=signals['swd1']),
|
||||
U10(VCTL1=signals['swd2'], VCTL2=signals['swd1']),
|
||||
U15(V1=signals['swrxb1'], V2=signals['swrxv2'], V3=signals['swrxv3']),
|
||||
U12_14(VCTL1=signals['swrxa1'], VCTL2=signals['swrxa2']),
|
||||
U16_18(VCTL1=signals['swrxb1'], VCTL2=signals['swrxb2'])
|
||||
)
|
||||
|
||||
for component in components:
|
||||
print('%s: %s' % (component.name, component))
|
||||
|
||||
def make_bits_from_numbers(i, bit_count):
|
||||
return [int(c) for c in bin(i)[2:].zfill(bit_count)]
|
||||
|
||||
print('Transmit')
|
||||
print('========')
|
||||
print
|
||||
for i in range(4):
|
||||
inputs = {
|
||||
'swtxb1': (i >> 1) & 1,
|
||||
'swtxa1': (i >> 0) & 1,
|
||||
'swrxa1': 0,
|
||||
'swrxb1': 0,
|
||||
'swd1': 0,
|
||||
}
|
||||
|
||||
outputs = compute_logic(**inputs)
|
||||
print_signals(outputs)
|
||||
print_circuit_state(outputs)
|
||||
|
||||
print
|
||||
|
||||
print('Receive')
|
||||
print('========')
|
||||
print
|
||||
for i in range(4):
|
||||
inputs = {
|
||||
'swtxb1': 0,
|
||||
'swtxa1': 0,
|
||||
'swrxa1': (i >> 1) & 1,
|
||||
'swrxb1': (i >> 0) & 1,
|
||||
'swd1': 0,
|
||||
}
|
||||
|
||||
outputs = compute_logic(**inputs)
|
||||
print_signals(outputs)
|
||||
print_circuit_state(outputs)
|
||||
|
||||
print
|
Reference in New Issue
Block a user