Skip to content

Commit

Permalink
add framebuffer console
Browse files Browse the repository at this point in the history
  • Loading branch information
yangqiao committed Jun 14, 2015
1 parent 858a9b0 commit 1d82ef8
Show file tree
Hide file tree
Showing 8 changed files with 339 additions and 2 deletions.
4 changes: 3 additions & 1 deletion c/src/lib/libbsp/arm/raspberrypi/Makefile.am
Expand Up @@ -46,6 +46,7 @@ include_bsp_HEADERS += include/usart.h
include_bsp_HEADERS += include/mailbox.h
include_bsp_HEADERS += include/vc.h
include_bsp_HEADERS += include/raspberrypi.h
include_bsp_HEADERS += console/fbcons.h

include_libcpu_HEADERS = ../../../libcpu/arm/shared/include/cache_.h \
../../../libcpu/arm/shared/include/arm-cp15.h
Expand Down Expand Up @@ -108,11 +109,12 @@ libbsp_a_SOURCES += irq/irq.c
libbsp_a_SOURCES += ../../shared/console.c
libbsp_a_SOURCES += ../../shared/console_control.c
libbsp_a_SOURCES += ../../shared/console_read.c
libbsp_a_SOURCES += ../../shared/console_select.c
libbsp_a_SOURCES += ../../shared/console_write.c
libbsp_a_SOURCES += console/console-config.c
libbsp_a_SOURCES += console/console_select.c
libbsp_a_SOURCES += console/usart.c
libbsp_a_SOURCES += console/fb.c
libbsp_a_SOURCES += console/fbcons.c
libbsp_a_SOURCES += console/outch.c

# clock
Expand Down
10 changes: 9 additions & 1 deletion c/src/lib/libbsp/arm/raspberrypi/console/console-config.c
Expand Up @@ -24,6 +24,7 @@
#include <bsp/irq.h>
#include <bsp/usart.h>
#include <bsp/raspberrypi.h>
#include <bsp/fbcons.h>

console_tbl Console_Configuration_Ports [] = {
{
Expand All @@ -36,7 +37,14 @@ console_tbl Console_Configuration_Ports [] = {
.ulCtrlPort2 = 0,
.ulClock = USART0_DEFAULT_BAUD,
.ulIntVector = BCM2835_IRQ_ID_UART
}
},
{
.sDeviceName ="/dev/fbcons",
.deviceType = SERIAL_CUSTOM,
.pDeviceFns = &fbcons_fns,
.deviceProbe = fbcons_probe,
.pDeviceFlow = NULL,
},
};

#define PORT_COUNT \
Expand Down
100 changes: 100 additions & 0 deletions c/src/lib/libbsp/arm/raspberrypi/console/console_select.c
@@ -0,0 +1,100 @@
/**
* @file
*
* @ingroup raspberrypi_console
*
* @brief console select
*/

/*
* Copyright (c) 2015 Yang Qiao
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
*
* http://www.rtems.org/license/LICENSE
*
*/

#include <bsp.h>
#include <bsp/fatal.h>
#include <rtems/libio.h>
#include <stdlib.h>
#include <assert.h>
#include <termios.h>

#include <rtems/termiostypes.h>
#include <libchip/serial.h>
#include "../../../shared/console_private.h"

rtems_device_minor_number BSPPrintkPort = 0;

/*
* Method to return true if the device associated with the
* minor number probs available.
*/
static bool bsp_Is_Available( rtems_device_minor_number minor )
{
console_tbl *cptr = Console_Port_Tbl[minor];

/*
* First perform the configuration dependent probe, then the
* device dependent probe
*/
if ((!cptr->deviceProbe || cptr->deviceProbe(minor)) &&
cptr->pDeviceFns->deviceProbe(minor)) {
return true;
}
return false;
}

/*
* Method to return the first available device.
*/
static rtems_device_minor_number bsp_First_Available_Device( void )
{
rtems_device_minor_number minor;

for (minor=0; minor < Console_Port_Count ; minor++) {
console_tbl *cptr = Console_Port_Tbl[minor];

/*
* First perform the configuration dependent probe, then the
* device dependent probe
*/

if ((!cptr->deviceProbe || cptr->deviceProbe(minor)) &&
cptr->pDeviceFns->deviceProbe(minor)) {
return minor;
}
}

/*
* Error No devices were found. We will want to bail here.
*/
bsp_fatal(BSP_FATAL_CONSOLE_NO_DEV);
}

void bsp_console_select(void)
{

/*
* Reset Console_Port_Minor and
* BSPPrintkPort here if desired.
*
* This default version allows the bsp to set these
* values at creation and will not touch them again
* unless the selected port number is not available.
*/

Console_Port_Minor = BSP_CONSOLE_FB;
BSPPrintkPort = BSP_CONSOLE_FB;

/*
* If the device that was selected isn't available then
* let the user know and select the first available device.
*/
if ( !bsp_Is_Available( Console_Port_Minor ) ) {

This comment has been minimized.

Copy link
@gedare

gedare Jun 15, 2015

Verify this is succeeding

This comment has been minimized.

Copy link
@yangqiao

yangqiao Jun 20, 2015

Author Owner

In fact, only printk direct to serial console instead of graphic console. I didn't found out the reason yet. I didn't notice anything I forgot comparing with pc386 bsp. Since it's less urgent, I'll be back to it later.

Console_Port_Minor = bsp_First_Available_Device();
}
}
172 changes: 172 additions & 0 deletions c/src/lib/libbsp/arm/raspberrypi/console/fbcons.c
@@ -0,0 +1,172 @@
/**
* @file
*
* @ingroup raspberrypi_console
*
* @brief framebuffer graphic console support.
*/

/*
* Copyright (c) 2015 Yang Qiao
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
*
* http://www.rtems.org/license/LICENSE
*
*/

#include <rtems.h>
#include <rtems/libio.h>

#include <stdlib.h>

#include <libchip/serial.h>
#include <libchip/sersupp.h>

#include <bsp.h>
#include <bsp/fbcons.h>

/*
* fbcons_init
*
* This function initializes the fb console to a quiecsent state.
*/
static void fbcons_init(int minor)
{
}

/*
* fbcons_open
*
* This function opens a port for communication.
*
* Default state is 9600 baud, 8 bits, No parity, and 1 stop bit.
*/
static int fbcons_open(
int major,
int minor,
void *arg
)
{
return RTEMS_SUCCESSFUL;
}

/*
* fbcons_close
*
* This function shuts down the requested port.
*/
static int fbcons_close(
int major,
int minor,
void *arg
)
{
return(RTEMS_SUCCESSFUL);
}

/*
* fbcons_write_polled
*
* This routine polls out the requested character.
*/
static void fbcons_write_polled(
int minor,
char c
)
{
_RPI_outch( c );
if( c == '\n')
_RPI_outch( '\r' ); /* LF = LF + CR */
}

/*
* fbcons_write_support_polled
*
* Console Termios output entry point when using polled output.
*
*/
static ssize_t fbcons_write_support_polled(
int minor,
const char *buf,
size_t len
)
{
int nwrite = 0;

/*
* poll each byte in the string out of the port.
*/
while (nwrite < len) {
fbcons_write_polled(minor, *buf++);
nwrite++;
}

/*
* return the number of bytes written.
*/
return nwrite;
}

/*
* fbcons_inbyte_nonblocking_polled
*
* Console Termios polling input entry point.
*/
static int fbcons_inbyte_nonblocking_polled(
int minor
)
{
// if( rtems_kbpoll() ) {
// int c = getch();
// return c;
// }

return -1;
}

/*
* fbcons_set_attributes
*
* This function sets the UART channel to reflect the requested termios
* port settings.
*/
static int fbcons_set_attributes(
int minor,
const struct termios *t
)
{
return 0;
}

bool fbcons_probe(
int minor
)
{
// rtems_status_code status;
static bool firstTime = true;

/*
* keyboard interrupt should be registered when the keyboard is available
*/
if ( firstTime ) {
printk("[+]fbcons_probe executed\n");
}
firstTime = false;

return true;
}

const console_fns fbcons_fns =
{
.deviceProbe = libchip_serial_default_probe, /* deviceProbe */
.deviceFirstOpen = fbcons_open, /* deviceFirstOpen */
.deviceLastClose = fbcons_close, /* deviceLastClose */
.deviceRead = fbcons_inbyte_nonblocking_polled, /* deviceRead */
.deviceWrite = fbcons_write_support_polled, /* deviceWrite */
.deviceInitialize = fbcons_init, /* deviceInitialize */
.deviceWritePolled = fbcons_write_polled, /* deviceWritePolled */
.deviceSetAttributes = fbcons_set_attributes, /* deviceSetAttributes */
.deviceOutputUsesInterrupts = FALSE, /* deviceOutputUsesInterrupts*/
};
47 changes: 47 additions & 0 deletions c/src/lib/libbsp/arm/raspberrypi/console/fbcons.h
@@ -0,0 +1,47 @@
/**
* @file
*
* @ingroup raspberrypi_console
*
* @brief framebuffer graphic console support.
*/

/*
* Copyright (c) 2015 Yang Qiao
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
*
* http://www.rtems.org/license/LICENSE
*
*/

#ifndef _FBCONS_H_
#define _FBCONS_H_

#include <libchip/serial.h>

#ifdef __cplusplus
extern "C" {
#endif

/*
* This is the ASCII for "PI" in the upper word and 2835
* in the lower which should be unique enough to
* distinguish this type of serial device from others.
*/

#define FB_CONSOLE 0x50492835

bool fbcons_probe( int minor );

/*
* Driver function table
*/
extern const console_fns fbcons_fns;

#ifdef __cplusplus
}
#endif

#endif /* _FBCONS_H_ */
3 changes: 3 additions & 0 deletions c/src/lib/libbsp/arm/raspberrypi/include/bsp.h
Expand Up @@ -35,6 +35,9 @@ extern "C" {

#define BSP_FEATURE_IRQ_EXTENSION

#define BSP_CONSOLE_UART0 0
#define BSP_CONSOLE_FB 1

/*-------------------------------------------------------------------------+
| Function Prototypes.
+--------------------------------------------------------------------------*/
Expand Down
4 changes: 4 additions & 0 deletions c/src/lib/libbsp/arm/raspberrypi/preinstall.am
Expand Up @@ -138,6 +138,10 @@ $(PROJECT_INCLUDE)/bsp/raspberrypi.h: include/raspberrypi.h $(PROJECT_INCLUDE)/b
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/raspberrypi.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/raspberrypi.h

$(PROJECT_INCLUDE)/bsp/fbcons.h: console/fbcons.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/fbcons.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/fbcons.h

$(PROJECT_INCLUDE)/libcpu/cache_.h: ../../../libcpu/arm/shared/include/cache_.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/cache_.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/cache_.h
Expand Down
1 change: 1 addition & 0 deletions c/src/lib/libbsp/arm/raspberrypi/startup/bspstart.c
Expand Up @@ -26,4 +26,5 @@
void bsp_start(void)
{
bsp_interrupt_initialize();
_RPI_initVideo();
}

0 comments on commit 1d82ef8

Please sign in to comment.