summaryrefslogtreecommitdiff
path: root/nuttx/arch/mips
Commit message (Collapse)AuthorAgeFilesLines
* Refresh configurationGregory Nutt2015-02-251-1/+0
|
* PIC32MZ: Add serial driverGregory Nutt2015-02-244-21/+1334
|
* PIC32MZ: Add low level UART supportGregory Nutt2015-02-244-17/+392
|
* PIC32MZ: Add UART register definition header fileGregory Nutt2015-02-245-11/+277
|
* PIC32MZ: Add error exception handling and interrupt decode logicGregory Nutt2015-02-243-1/+399
|
* PIC32MZ: Add support for a timer interruptGregory Nutt2015-02-245-3/+526
|
* PIC32MZ: Add interrupt controller supportGregory Nutt2015-02-245-12/+458
|
* PIC32MZ: Add interrupt controller register definitionsGregory Nutt2015-02-244-3/+1266
|
* PIC32MX: Standardize of naming in commentsGregory Nutt2015-02-2434-34/+34
|
* PIC32MZ: Add Oscillator header file; Add logic to set up peripheral clocks ↵Gregory Nutt2015-02-245-31/+465
| | | | on reset
* PIC32MZ: Add beginnings of CPU initialization logic. Still some bad logic ↵Gregory Nutt2015-02-247-4/+521
| | | | for setting up peripheral clocking
* PIC32MZ: Fix some PLL setup logicGregory Nutt2015-02-231-8/+8
|
* PIC32MZ: Fix an error in the branch target of the hard-coded power up reset ↵Gregory Nutt2015-02-231-11/+19
| | | | branch
* PIC32MZ: Most related to start up file a FLASH device configuration setupGregory Nutt2015-02-234-1117/+331
|
* PIC32MZ: Make sure that the microMIPS ISA is selected on all common MIPS32 ↵Gregory Nutt2015-02-233-2/+15
| | | | assembly files when the PIC21MZ is selected
* PIC32MZ: Resolve a PIC32 dependency in the generic MIPS32 codeGregory Nutt2015-02-231-2/+8
|
* Finishes PIC32MZ device configuration definitionsGregory Nutt2015-02-233-92/+325
|
* PIC32MZ: Add memorymap and devcfg header filesGregory Nutt2015-02-226-2/+501
|
* PIC32MZ: Framework for startup function. Still has too much PIC32MX ↵Gregory Nutt2015-02-224-1/+2124
| | | | garbage in it to be credible
* MIPS: Add some build support for the M14K and also for the PIC32MZ Starter ↵Gregory Nutt2015-02-2212-76/+941
| | | | Kit. Still a long way to go
* Remove support for obsolete PIC32 toolchain configuration namesGregory Nutt2015-02-221-8/+8
|
* PIC32MZ: Add just enough PIC32MZ logic that we can run 'make menuconfig'Gregory Nutt2015-02-226-1/+1804
|
* Fix a typo that prevents building PIC32... How long has that been there?Gregory Nutt2015-02-211-1/+1
|
* Current Pinguino toolchain uses prefix p32 instead of mipsGregory Nutt2015-02-211-1/+2
|
* SYSLOG: Add an option to use the syslog'ing device as the system ↵Gregory Nutt2015-02-081-0/+3
| | | | consolution. This option enables a low-level, write-only console device at /dev/console (similar to the low-level UART console device). From Pierre-noel Bouteville.
* Remove CONFIG_DEBUG_STACK. Adding CONFIG_STACK_COLORATION makes this ↵Gregory Nutt2015-01-241-9/+1
| | | | configuration option pointless
* All Ethernet drivers (again): Missed one place where arp_out() is called ↵Gregory Nutt2015-01-211-1/+22
| | | | and neighber_out() needs to be called
* Networking: Modify all Ethernet drivers: Do neighbor look-up on all ↵Gregory Nutt2015-01-201-1/+13
| | | | outgoing IPv6 packs in order to properly set the destination link layer address.
* Networking: Add missing raw/packet socket support to all Ethernet driversGregory Nutt2015-01-201-1/+13
|
* Ethernet drivers: Use IFF_IS_IPv4 macro. Cannot rely on the EtherType being ↵Gregory Nutt2015-01-201-2/+2
| | | | set correctly.
* Networking: All Ethernet drivers: Call ipv6_input if IPv6 is enabled and ↵Gregory Nutt2015-01-151-8/+58
| | | | an IPv6 packet is received
* - Rename devif_input() ipv4_input()Gregory Nutt2015-01-151-1/+1
| | | | | | - Copy net/devif/devif_input.c to ipv6_input.c. Remove all IPv4-specific logic. - Rename net/devif/devif_input.c to ipv4_input.c. Remove all IPv6-specific logic - Split IPv4 header structure out as net_ipv4hdr_s from net_iphdr_s
* Networking: Condition certain ARP logic on CONFIG_NET_ARP in all Ethernet ↵Gregory Nutt2015-01-151-1/+4
| | | | drivers
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all MCU Ethernet driversGregory Nutt2014-11-161-5/+5
|
* Netwoek: Ada a parameter to netdev_register() to indicate the link protocol ↵Gregory Nutt2014-11-151-1/+1
| | | | supported by the driver. Use this value to replace some logic commited yesterday
* Move selection for CONFIG_SERIAL_TERMIOS out of MCU Kconfigs to common ↵Gregory Nutt2014-10-272-9/+7
| | | | drivers/serial/Kconfig. Add CONFIG_ARCH_HAVE_SERIAL_TERMIOS to indicate if an MCU supports TERMIOS
* For PIC32MX7, DEVCFG0 bit 2 must be setGregory Nutt2014-10-091-1/+1
|
* Update everything under nuttx/arch to use the corrected syslog interfacesGregory Nutt2014-10-082-18/+33
|
* The 'make export' target needs to bundle up the user C startup file (crt0), ↵Gregory Nutt2014-09-041-3/+4
| | | | not the kernel head object
* There used to be two ways to pass parameters to new tasks, depending upon ↵Gregory Nutt2014-09-012-12/+14
| | | | the configuration: Either (1) argv[] as created as an array with each string strdup'ed. Or (1) argv[] array and strings were created on the stack before the new task was started. Now, there is only one way, way (1). Way (2) might be slightly more compact, but this is not worth carry the complexity of two different ways of doing the same thing.
* Reanem kzalloc to kmm_zalloc for consistencyGregory Nutt2014-08-311-1/+1
|
* Rename kmalloc to kmm_malloc for consistencyGregory Nutt2014-08-312-2/+2
|
* Rename kfree to kmm_free for consistency with other naming conventionsGregory Nutt2014-08-311-1/+1
|
* Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency ↵Gregory Nutt2014-08-311-2/+2
| | | | with other naming
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-298-16/+16
| | | | new CONFIG_BUILD_KERNEL
* Fix an error introduced into ALL implmentations of interrupt dispatch logicGregory Nutt2014-08-282-2/+2
|
* Add address environment support to ALL implementatins of up_release_pending()Gregory Nutt2014-08-281-2/+17
|
* Add address environment support to ALL implementatins of up_reprioritize_rtr()Gregory Nutt2014-08-281-2/+17
|
* MIPS: Move address environment switch from the task switchers to the ↵Gregory Nutt2014-08-284-49/+82
| | | | interrupt handler. That may save doing the action multiple times per interrupt
* Add ADDRENV support to ALL implmentations of _exit()Gregory Nutt2014-08-271-1/+12
|