Deleted Added
full compact
at91_machdep.c (238376) at91_machdep.c (238403)
1/*-
2 * Copyright (c) 1994-1998 Mark Brinicombe.
3 * Copyright (c) 1994 Brini.
4 * All rights reserved.
5 *
6 * This code is derived from software written for Brini by Mark Brinicombe
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 30 unchanged lines hidden (view full) ---

39 * Machine dependant functions for kernel setup
40 *
41 * This file needs a lot of work.
42 *
43 * Created : 17/09/94
44 */
45
46#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1994-1998 Mark Brinicombe.
3 * Copyright (c) 1994 Brini.
4 * All rights reserved.
5 *
6 * This code is derived from software written for Brini by Mark Brinicombe
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 30 unchanged lines hidden (view full) ---

39 * Machine dependant functions for kernel setup
40 *
41 * This file needs a lot of work.
42 *
43 * Created : 17/09/94
44 */
45
46#include <sys/cdefs.h>
47__FBSDID("$FreeBSD: head/sys/arm/at91/at91_machdep.c 238376 2012-07-11 20:17:14Z imp $");
47__FBSDID("$FreeBSD: head/sys/arm/at91/at91_machdep.c 238403 2012-07-12 19:11:37Z imp $");
48
49#define _ARM32_BUS_DMA_PRIVATE
50#include <sys/param.h>
51#include <sys/systm.h>
52#include <sys/sysproto.h>
53#include <sys/signalvar.h>
54#include <sys/imgact.h>
55#include <sys/kernel.h>

--- 341 unchanged lines hidden (view full) ---

397 soc_info.subtype == AT91_ST_NONE ? "" : " subtype ",
398 soc_info.subtype == AT91_ST_NONE ? "" :
399 soc_subtype_name[soc_info.subtype]);
400
401 /*
402 * try to get the matching CPU support.
403 */
404 soc_info.soc_data = at91_match_soc(soc_info.type, soc_info.subtype);
48
49#define _ARM32_BUS_DMA_PRIVATE
50#include <sys/param.h>
51#include <sys/systm.h>
52#include <sys/sysproto.h>
53#include <sys/signalvar.h>
54#include <sys/imgact.h>
55#include <sys/kernel.h>

--- 341 unchanged lines hidden (view full) ---

397 soc_info.subtype == AT91_ST_NONE ? "" : " subtype ",
398 soc_info.subtype == AT91_ST_NONE ? "" :
399 soc_subtype_name[soc_info.subtype]);
400
401 /*
402 * try to get the matching CPU support.
403 */
404 soc_info.soc_data = at91_match_soc(soc_info.type, soc_info.subtype);
405 soc_info.dbgu_base = AT91_BASE + dbgu_base;
405
406 return (1);
407}
408
409static void
410at91_soc_id(void)
411{
412

--- 250 unchanged lines hidden ---
406
407 return (1);
408}
409
410static void
411at91_soc_id(void)
412{
413

--- 250 unchanged lines hidden ---