Changeset 0f27b4c in mainline


Ignore:
Timestamp:
2006-05-01T13:45:38Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
762a824
Parents:
953b0f33
Message:

Rename acpi/matd.c to madt.c (Multiple APIC Description Table).
Improve Doxygen comments in genarch/.

Location:
genarch
Files:
8 edited
1 moved

Legend:

Unmodified
Added
Removed
  • genarch/Makefile.inc

    r953b0f33 r0f27b4c  
    3737        GENARCH_SOURCES += \
    3838                genarch/src/acpi/acpi.c \
    39                 genarch/src/acpi/matd.c
     39                genarch/src/acpi/madt.c
    4040endif
    4141ifeq ($(CONFIG_PAGE_PT),y)
  • genarch/src/acpi/acpi.c

    r953b0f33 r0f27b4c  
    2727 */
    2828
     29/**
     30 * @file        acpi.c
     31 * @brief       Advanced Configuration and Power Interface (ACPI) initialization.
     32 */
     33 
    2934#include <genarch/acpi/acpi.h>
    3035#include <genarch/acpi/madt.h>
  • genarch/src/acpi/madt.c

    r953b0f33 r0f27b4c  
    2727 */
    2828
     29/**
     30 * @file        madt.c
     31 * @brief       Multiple APIC Description Table (MADT) parsing.
     32 */
     33
    2934#include <arch/types.h>
    3035#include <typedefs.h>
  • genarch/src/mm/as_ht.c

    r953b0f33 r0f27b4c  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28 
     29/**
     30 * @file        as_ht.c
     31 * @brief       Address space functions for global page hash table.
    2732 */
    2833
  • genarch/src/mm/as_pt.c

    r953b0f33 r0f27b4c  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        as_pt.c
     31 * @brief       Address space functions for 4-level hierarchical pagetables.
    2732 */
    2833
  • genarch/src/mm/asid.c

    r953b0f33 r0f27b4c  
    2727 */
    2828
    29 /*
    30  * ASID management.
     29/**
     30 * @file        asid.c
     31 * @brief       ASID management.
    3132 *
    3233 * Modern processor architectures optimize TLB utilization
  • genarch/src/mm/asid_fifo.c

    r953b0f33 r0f27b4c  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
     28 
     29/**
     30 * @file        asid_fifo.c
     31 * @brief       FIFO queue ASID management.
     32 *
     33 * Architectures that link with this file keep the unallocated ASIDs
     34 * in FIFO queue. The queue can be statically (e.g. mips32) or
     35 * dynamically allocated (e.g ia64 and sparc64).
     36 */
    2837
    2938#include <genarch/mm/asid_fifo.h>
  • genarch/src/mm/page_ht.c

    r953b0f33 r0f27b4c  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        page_ht.c
     31 * @brief       Virtual Address Translation (VAT) for global page hash table.
    2732 */
    2833
  • genarch/src/mm/page_pt.c

    r953b0f33 r0f27b4c  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        page_pt.c
     31 * @brief       Virtual Address Translation for hierarchical 4-level page tables.
    2732 */
    2833
Note: See TracChangeset for help on using the changeset viewer.