Changes in / [c928bb7:e1a27be] in mainline
- Files:
-
- 17 added
- 5 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
rc928bb7 re1a27be 65 65 @ "integratorcp" Integratorcp 66 66 @ "beagleboardxm" BeogleBoard-xM 67 @ "beaglebone" BeogleBone 67 68 ! [PLATFORM=arm32] MACHINE (choice) 68 69 … … 96 97 % CPU type 97 98 @ "armv7_a" ARMv7-A 98 ! [PLATFORM=arm32& MACHINE=beagleboardxm] PROCESSOR (choice)99 ! [PLATFORM=arm32&(MACHINE=beagleboardxm|MACHINE=beaglebone)] PROCESSOR (choice) 99 100 100 101 % RAM disk format … … 425 426 % Output device class 426 427 @ "generic" Monitor or serial line 427 ! [PLATFORM=arm32&(MACHINE=gta02|MACHINE=integratorcp|MACHINE=beagleboardxm )] CONFIG_HID_OUT (choice)428 ! [PLATFORM=arm32&(MACHINE=gta02|MACHINE=integratorcp|MACHINE=beagleboardxm|MACHINE=beaglebone)] CONFIG_HID_OUT (choice) 428 429 429 430 % Output device class … … 472 473 ! [PLATFORM=arm32&MACHINE=gta02] CONFIG_S3C24XX_IRQC (y) 473 474 474 % Support for TI AMDM37X on-chip UART 475 % Support for TI AM335x on-chip UART 476 ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&PLATFORM=arm32&MACHINE=beaglebone] CONFIG_AM335X_UART (y/n) 477 478 % Support for TI AM335x timers support 479 ! [PLATFORM=arm32&MACHINE=beaglebone] CONFIG_AM335X_TIMERS (y) 480 481 % Support for TI AMDM37x on-chip UART 475 482 ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&PLATFORM=arm32&MACHINE=beagleboardxm] CONFIG_AMDM37X_UART (y/n) 476 483 … … 494 501 495 502 % Serial line input module 496 ! [CONFIG_DSRLNIN=y|(PLATFORM=arm32&MACHINE=gta02)|(PLATFORM=arm32&MACHINE=integratorcp&CONFIG_ARM926_UART=y)|(PLATFORM=arm32&MACHINE=beaglebo ardxm&CONFIG_AMDM37X_UART=y)|(PLATFORM=ia64&MACHINE=i460GX&CONFIG_NS16550=y)|(PLATFORM=ia64&MACHINE=ski)|(PLATFORM=sparc64&PROCESSOR=sun4v)] CONFIG_SRLN (y)503 ! [CONFIG_DSRLNIN=y|(PLATFORM=arm32&MACHINE=gta02)|(PLATFORM=arm32&MACHINE=integratorcp&CONFIG_ARM926_UART=y)|(PLATFORM=arm32&MACHINE=beaglebone&CONFIG_AM335X_UART=y)|(PLATFORM=arm32&MACHINE=beagleboardxm&CONFIG_AMDM37X_UART=y)|(PLATFORM=ia64&MACHINE=i460GX&CONFIG_NS16550=y)|(PLATFORM=ia64&MACHINE=ski)|(PLATFORM=sparc64&PROCESSOR=sun4v)] CONFIG_SRLN (y) 497 504 498 505 % EGA support -
boot/arch/arm32/Makefile.inc
rc928bb7 re1a27be 35 35 endif 36 36 37 ifeq ($(MACHINE), beagleboardxm)37 ifeq ($(MACHINE), $(filter $(MACHINE),beagleboardxm beaglebone)) 38 38 BOOT_OUTPUT = image.boot 39 39 POST_OUTPUT = $(ROOT_PATH)/uImage.bin -
kernel/arch/arm32/Makefile.inc
rc928bb7 re1a27be 84 84 endif 85 85 86 ifeq ($(MACHINE),beaglebone) 87 ARCH_SOURCES += arch/$(KARCH)/src/mach/beaglebone/beaglebone.c 88 endif 89 86 90 ifeq ($(CONFIG_PL050),y) 87 91 ARCH_SOURCES += genarch/src/drivers/pl050/pl050.c -
kernel/arch/arm32/src/mach/beagleboardxm/beagleboardxm.c
rc928bb7 re1a27be 35 35 #include <arch/exception.h> 36 36 #include <arch/mach/beagleboardxm/beagleboardxm.h> 37 #include <genarch/drivers/amdm37x _irc/amdm37x_irc.h>38 #include <genarch/drivers/amdm37x _uart/amdm37x_uart.h>39 #include <genarch/drivers/amdm37x _gpt/amdm37x_gpt.h>40 #include <genarch/drivers/amdm37x _dispc/amdm37x_dispc.h>37 #include <genarch/drivers/amdm37x/uart.h> 38 #include <genarch/drivers/amdm37x/irc.h> 39 #include <genarch/drivers/amdm37x/gpt.h> 40 #include <genarch/drivers/amdm37x/dispc.h> 41 41 #include <genarch/fb/fb.h> 42 42 #include <genarch/srln/srln.h> -
kernel/arch/arm32/src/machine_func.c
rc928bb7 re1a27be 42 42 #include <arch/mach/integratorcp/integratorcp.h> 43 43 #include <arch/mach/beagleboardxm/beagleboardxm.h> 44 #include <arch/mach/beaglebone/beaglebone.h> 44 45 45 46 /** Pointer to machine_ops structure being used. */ … … 55 56 #elif defined(MACHINE_beagleboardxm) 56 57 machine_ops = &bbxm_machine_ops; 58 #elif defined(MACHINE_beaglebone) 59 machine_ops = &bbone_machine_ops; 57 60 #else 58 61 #error Machine type not defined. -
kernel/genarch/Makefile.inc
rc928bb7 re1a27be 106 106 endif 107 107 108 ifeq ($(CONFIG_AM335X_UART),y) 109 GENARCH_SOURCES += \ 110 genarch/src/drivers/am335x/uart.c 111 endif 112 113 ifeq ($(CONFIG_AM335X_TIMERS),y) 114 GENARCH_SOURCES += \ 115 genarch/src/drivers/am335x/timer.c 116 endif 117 108 118 ifeq ($(CONFIG_AMDM37X_UART),y) 109 119 GENARCH_SOURCES += \ 110 genarch/src/drivers/amdm37x _uart/amdm37x_uart.c120 genarch/src/drivers/amdm37x/uart.c 111 121 endif 112 122
Note:
See TracChangeset
for help on using the changeset viewer.