Nios® V/II Embedded Design Suite (EDS)
Support for Embedded Development Tools, Processors (SoCs and Nios® V/II processor), Embedded Development Suites (EDSs), Boot and Configuration, Operating Systems, C and C++
Comunicados
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
12748 Discussões

BSP fails to build for FreeRTOS on a Nios V with UART

Andrew099
Principiante
6.786 Visualizações

I have a Nios V on a Max 10 with a UART (RS-232 Serial Port) Intel FPGA IP (and also JTAG UART). When I opened up the BSP editor, I selected FreeRTOS and went with all the defaults and made a BSP. However, when I try building a bare bones hello world C program, the BSP fails to build. It says that the BSP source file altera_avalon_uart_init.c has OS_FLAG_SET as undeclared, and similarly, it says the BSP file altera_avalon_uart_read.c has OS_FLAG_WAIT_SET_ANY undeclared. Also, altera_avalon_uart_write.c has OS_FLAG_CONSUME undeclared. How do I get the BSP to build?

 

I can use UART with HAL rather than FreeRTOS, and it works fine for the Nios V.

 

(I am using Quartus 23.1 STD.)

0 Kudos
1 Solução
EBERLAZARE_I_Intel
Funcionário
6.003 Visualizações

In the "freertos/drivers/src/":


  • intel_lw_uart_init.c
    • line 228~:

if (sp->tx_start == ((sp->tx_end + 1) & ALT_AVALON_UART_BUF_MSK))

   { 

    ALT_FLAG_POST (sp->events, 

            ALT_UART_WRITE_RDY,

            ALT_FLAG_SET);

   }


  • intel_lw_uart_read.c
    • line 205~:

 ALT_FLAG_PEND (sp->events, 

           ALT_UART_READ_RDY,

           ALT_FLAG_WAIT_SET_ANY_WITH_CONSUME,

ALT_FLAG_WAIT_MAX_TIMEOUT);


  • intel_lw_uart_write.c
    • line 192~:

 ALT_FLAG_PEND (sp->events, 

             ALT_UART_WRITE_RDY,

             ALT_FLAG_WAIT_SET_ANY_WITH_CONSUME,

             ALT_FLAG_WAIT_MAX_TIMEOUT);



Ver solução na publicação original

22 Respostas
EBERLAZARE_I_Intel
Funcionário
6.122 Visualizações

Hi,


Can you share the files, I would like replicate this on my side.


Andrew099
Principiante
6.104 Visualizações

Sure, I attached a Quartus archive of an example where the BSP won't build.

 

The C file doesn't have to have any substance to it. The following is fine:

 

 

// main.c
int main() {
   return 0;
}

 

 

  1. Open the Quartus project using Quartus 23.1 STD, and compile it.
  2. Create a BSP:
    • enter a niosv shell and open the BSP editor
    • select the sopcinfo file
    • select FreeRTOS
    • go with all other defaults
    • generate
  3. Use the niosv-app to create a cmake file.
  4. Run cmake and then make. (I'm using Linux.)
EBERLAZARE_I_Intel
Funcionário
6.047 Visualizações

Hi,


Thanks a lot for the info provided, let me test this on our side.


Also, could you provide the Quartus build version? You can find this in the "Help" tab in Quartus.


andy25
Novo colaborador I
5.942 Visualizações

mailbox_simple doesnt compile either:

/projects/c5_nios/software/freertos_bsp/drivers/src/altera_avalon_mailbox_simple.c:36:10: fatal error: nios2.h: No such file or directory
   36 | #include "nios2.h"
      |          ^~~~~~~~~

This is FreeRTOS for NiosV Quartus Prime Lite 23.1 Build 991.

 

Andrew099
Principiante
6.026 Visualizações

Thanks. I'm using Quartus Pime Version 23.1std.0 Build 991 11/28/2023 SC Standard Edition

EBERLAZARE_I_Intel
Funcionário
5.910 Visualizações

Hi,


I am a bit caught up on my side, I will try to get the test in the next few days.


Thank you for your patience, I shall get back to you soon.


andy25
Novo colaborador I
5.892 Visualizações

"On-Chip Flash Intel FPGA IP" doesnt compile either:

In file included from freertos_bsp/drivers/src/altera_onchip_flash.c:32:
freertos_bsp/drivers/src/altera_onchip_flash.c: In function 'alt_onchip_flash_erase_block':
freertos_bsp/HAL/inc/io.h:126:34: error: expected expression before 'do'
  126 | #define SWIO(BASE, OFFSET, DATA) do {                   \
      |                                  ^~

 

Broddo
Novo colaborador I
4.203 Visualizações

I've experienced this one as well. The reason is that the do {} while(0) is surrounded by a brace due to the macro expansion in altera_onchip_flash_regs.h

 

You can fix it by modifying each of the macros altera_onchip_flash_regs.h and removing the outermost brackets like so:

Old:

#define ALTERA_ONCHIP_FLASH_ENABLE_WRITE_AND_ERASE_OPERATION(base)              \
    (                                                                           \
        IOWR_ALTERA_ONCHIP_FLASH_CONTROL((base),                                \
            (IORD_ALTERA_ONCHIP_FLASH_CONTROL((base))                           \
            &                                                                   \
                ~(                                                              \
                    ALTERA_ONCHIP_FLASH_CONTROL_ALLSECTOR_WRITE_PROTECT_MSK |   \
                    ALTERA_ONCHIP_FLASH_CONTROL_PAGE_ERASE_MSK |                \
                    ALTERA_ONCHIP_FLASH_CONTROL_SECTOR_ERASE_MSK                \
                )                                                               \
            )                                                                   \
            |                                                                   \
                (                                                               \
                    ALTERA_ONCHIP_FLASH_CONTROL_ALLSECTOR_WRITE_ENABLE |        \
                    ALTERA_ONCHIP_FLASH_CONTROL_PAGE_ERASE_NOT_SET |            \
                    ALTERA_ONCHIP_FLASH_CONTROL_SECTOR_ERASE_NOT_SET            \
                )                                                               \
        )                                                                       \
    )

Modified:

#define ALTERA_ONCHIP_FLASH_ENABLE_WRITE_AND_ERASE_OPERATION(base)              \
        IOWR_ALTERA_ONCHIP_FLASH_CONTROL((base),                                \
            (IORD_ALTERA_ONCHIP_FLASH_CONTROL((base))                           \
            &                                                                   \
                ~(                                                              \
                    ALTERA_ONCHIP_FLASH_CONTROL_ALLSECTOR_WRITE_PROTECT_MSK |   \
                    ALTERA_ONCHIP_FLASH_CONTROL_PAGE_ERASE_MSK |                \
                    ALTERA_ONCHIP_FLASH_CONTROL_SECTOR_ERASE_MSK                \
                )                                                               \
            )                                                                   \
            |                                                                   \
                (                                                               \
                    ALTERA_ONCHIP_FLASH_CONTROL_ALLSECTOR_WRITE_ENABLE |        \
                    ALTERA_ONCHIP_FLASH_CONTROL_PAGE_ERASE_NOT_SET |            \
                    ALTERA_ONCHIP_FLASH_CONTROL_SECTOR_ERASE_NOT_SET            \
                )                                                               \
        )                                                                       \

 @EBERLAZARE_I_Intel Can you flag this to be patched as well? And any news on when the UART fix will be submitted? This is affecting me also. 

EBERLAZARE_I_Intel
Funcionário
5.774 Visualizações

Hi,


Thanks for the feedback, I was able to replicate the issue, I will channel this to our internal team.


I will update to you once we have any new info on this.


Thank you for your patience.


andy25
Novo colaborador I
5.761 Visualizações

The lightweight uart has the same problem.

Andrew099
Principiante
5.747 Visualizações

Okay, thank you for looking into it, and yes, please do let me know when you have more info on it.

EBERLAZARE_I_Intel
Funcionário
5.644 Visualizações

Hi,


We are still working on a patch fix for 23.1 std, I will check again if that will include for 23.1 std lite.


EBERLAZARE_I_Intel
Funcionário
5.564 Visualizações

Hi,


We are still working on a proper fix for this. We will update to you soon.


EBERLAZARE_I_Intel
Funcionário
5.462 Visualizações

Hi,


The changes for this error is to change the driver's code "\software\freertos_bsp\drivers\src"and modify the LW_UART HAL API as such (a KDB for this will be published):

  • intel_lw_uart_init.c


  • intel_lw_uart_read.c

  • intel_lw_uart_write.c

However, for MAX 10, making this changes will increase the size of the .elf, and it would not fit the maximum size for MAX 10's OCRAM due to its size. Thus we regret to inform you, that MAX 10 cannot support FreeRTOS due to its memory limitation. You may continue with the Altera HAL or in the future consider a bigger FPGA.


Andrew099
Principiante
5.432 Visualizações
Broddo
Novo colaborador I
4.149 Visualizações

The reason for the large execution size is due to the sneaky call to printf() in the provided vApplicationStackOverflowHook in FreeRTOS:

 

void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName )
{
    /*  To suspress unused argument warning. */
	( void ) xTask;

    printf("Stack overflow task is %s \r\n",pcTaskName);
    taskDISABLE_INTERRUPTS();
    __asm volatile( "ebreak" );
    for( ;; );
}

This pulls in large chunks of the standard library and completely bloats the code. Simply disabling the stack overflow check in the BSP is enough to shrink the code size enough to fit in the OCRAM on a MAX10 no problem. I'd suggest removing this and using one of the ALT_LOG functions going forward.  

andy25
Novo colaborador I
5.443 Visualizações

all of your links are broken

EBERLAZARE_I_Intel
Funcionário
5.395 Visualizações

Let me try to reattach:


  • intel_lw_uart_init.c

  • intel_lw_uart_read.c

  • intel_lw_uart_write.c


Again, for MAX 10, making this changes will increase the size of the .elf, and it would not fit the maximum size for MAX 10's OCRAM due to its size. You may continue to use Altera HAL or in the future consider a bigger FPGA.


EBERLAZARE_I_Intel
Funcionário
6.004 Visualizações

In the "freertos/drivers/src/":


  • intel_lw_uart_init.c
    • line 228~:

if (sp->tx_start == ((sp->tx_end + 1) & ALT_AVALON_UART_BUF_MSK))

   { 

    ALT_FLAG_POST (sp->events, 

            ALT_UART_WRITE_RDY,

            ALT_FLAG_SET);

   }


  • intel_lw_uart_read.c
    • line 205~:

 ALT_FLAG_PEND (sp->events, 

           ALT_UART_READ_RDY,

           ALT_FLAG_WAIT_SET_ANY_WITH_CONSUME,

ALT_FLAG_WAIT_MAX_TIMEOUT);


  • intel_lw_uart_write.c
    • line 192~:

 ALT_FLAG_PEND (sp->events, 

             ALT_UART_WRITE_RDY,

             ALT_FLAG_WAIT_SET_ANY_WITH_CONSUME,

             ALT_FLAG_WAIT_MAX_TIMEOUT);



EBERLAZARE_I_Intel
Funcionário
5.352 Visualizações

Hi Andrew,


We apologize for any inconvenience. Given this, is it okay to proceed with the Altera HAL with your design? Or do you have other FPGA?


Responder