code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
/* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * Definitions for the Interfaces handler. * * Version: @(#)dev.h 1.0.10 08/12/93 * * Authors: Ross Biro * ...
1001-study-uboot
include/linux/netdevice.h
C
gpl3
2,318
#ifndef __LINUX_COMPILER_H #error "Please don't include <linux/compiler-gcc4.h> directly, include <linux/compiler.h> instead." #endif /* GCC 4.1.[01] miscompiles __weak */ #ifdef __KERNEL__ # if __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ <= 1 # error Your version of gcc miscompiles the __weak directive # endif #endif...
1001-study-uboot
include/linux/compiler-gcc4.h
C
gpl3
2,125
/* * linux/include/linux/mtd/onenand.h * * Copyright (C) 2005-2007 Samsung Electronics * Kyungmin Park <kyungmin.park@samsung.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foun...
1001-study-uboot
include/linux/mtd/onenand.h
C
gpl3
6,125
/* * (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> */ #ifndef __MTD_NFTL_H__ #define __MTD_NFTL_H__ #include <linux/mtd/mtd.h> #include <linux/mtd/blktrans.h> #include <linux/mtd/nftl-user.h> /* these info are used in ReplUnitTable */ #define BLOCK_NIL 0xffff /* last block of a chain */ #define BLOCK_FRE...
1001-study-uboot
include/linux/mtd/nftl.h
C
gpl3
1,664
#ifndef _LINUX_COMPAT_H_ #define _LINUX_COMPAT_H_ #define __user #define __iomem #define ndelay(x) udelay(1) #define printk printf #define KERN_EMERG #define KERN_ALERT #define KERN_CRIT #define KERN_ERR #define KERN_WARNING #define KERN_NOTICE #define KERN_INFO #define KERN_DEBUG #define kmalloc(size, flags) mall...
1001-study-uboot
include/linux/mtd/compat.h
C
gpl3
1,196
/* * $Id: jffs2-user.h,v 1.1 2004/05/05 11:57:54 dwmw2 Exp $ * * JFFS2 definitions for use in user space only */ #ifndef __JFFS2_USER_H__ #define __JFFS2_USER_H__ /* This file is blessed for inclusion by userspace */ #include <linux/jffs2.h> #include <endian.h> #include <byteswap.h> #undef cpu_to_je16 #undef cpu...
1001-study-uboot
include/linux/mtd/jffs2-user.h
C
gpl3
897
/* * $Id: mtd-abi.h,v 1.13 2005/11/07 11:14:56 gleixner Exp $ * * Portions of MTD ABI definition which are shared by kernel and user space */ #ifndef __MTD_ABI_H__ #define __MTD_ABI_H__ #if 1 #include <linux/mtd/compat.h> #endif struct erase_info_user { uint32_t start; uint32_t length; }; struct mtd_oob_buf {...
1001-study-uboot
include/linux/mtd/mtd-abi.h
C
gpl3
4,431
/* * linux/include/linux/mtd/ndfc.h * * Copyright (c) 2006 Thomas Gleixner <tglx@linutronix.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Info: * Contains de...
1001-study-uboot
include/linux/mtd/ndfc.h
C
gpl3
2,257
/* * (C) 2003 David Woodhouse <dwmw2@infradead.org> * * Interface to Linux block layer for MTD 'translation layers'. * */ #ifndef __MTD_TRANS_H__ #define __MTD_TRANS_H__ /* XXX U-BOOT XXX */ #if 0 #include <linux/mutex.h> #else #include <linux/list.h> #endif struct hd_geometry; struct mtd_info; struct mtd_blktr...
1001-study-uboot
include/linux/mtd/blktrans.h
C
gpl3
1,936
/* * MTD device concatenation layer definitions * * (C) 2002 Robert Kaiser <rkaiser@sysgo.de> * * This code is GPL */ #ifndef MTD_CONCAT_H #define MTD_CONCAT_H struct mtd_info *mtd_concat_create( struct mtd_info *subdev[], /* subdevices to concatenate */ int num_devs, /* number of subdevi...
1001-study-uboot
include/linux/mtd/concat.h
C
gpl3
452
/* * linux/include/linux/mtd/nand.h * * Copyright (c) 2000 David Woodhouse <dwmw2@infradead.org> * Steven J. Hill <sjhill@realitydiluted.com> * Thomas Gleixner <tglx@linutronix.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the ...
1001-study-uboot
include/linux/mtd/nand.h
C
gpl3
21,192
/* * drivers/mtd/nand_ecc.h * * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This file is the header f...
1001-study-uboot
include/linux/mtd/nand_ecc.h
C
gpl3
748
/* * Copyright (c) International Business Machines Corp., 2006 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. ...
1001-study-uboot
include/linux/mtd/ubi.h
C
gpl3
6,971
/* * FSL UPM NAND driver * * Copyright (C) 2007 MontaVista Software, Inc. * Anton Vorontsov <avorontsov@ru.mvista.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation...
1001-study-uboot
include/linux/mtd/fsl_upm.h
C
gpl3
1,074
/* * Copyright (C) 2005-2009 Samsung Electronics * Minkyu Kang <mk7.kang@samsung.com> * Kyungmin Park <kyungmin.park@samsung.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GN...
1001-study-uboot
include/linux/mtd/samsung_onenand.h
C
gpl3
4,101
/* * $Id: inftl-user.h,v 1.2 2005/11/07 11:14:56 gleixner Exp $ * * Parts of INFTL headers shared with userspace * */ #ifndef __MTD_INFTL_USER_H__ #define __MTD_INFTL_USER_H__ #define OSAK_VERSION 0x5120 #define PERCENTUSED 98 #define SECTORSIZE 512 /* Block Control Information */ struct inftl_bci { uint8_t ...
1001-study-uboot
include/linux/mtd/inftl-user.h
C
gpl3
1,672
/* * $Id: nftl-user.h,v 1.2 2005/11/07 11:14:56 gleixner Exp $ * * Parts of NFTL headers shared with userspace * */ #ifndef __MTD_NFTL_USER_H__ #define __MTD_NFTL_USER_H__ /* Block Control Information */ struct nftl_bci { unsigned char ECCSig[6]; uint8_t Status; uint8_t Status1; }__attribute__((packed)); /*...
1001-study-uboot
include/linux/mtd/nftl-user.h
C
gpl3
1,387
/* * Linux driver for Disk-On-Chip devices * * Copyright (C) 1999 Machine Vision Holdings, Inc. * Copyright (C) 2001-2003 David Woodhouse <dwmw2@infradead.org> * Copyright (C) 2002-2003 Greg Ungerer <gerg@snapgear.com> * Copyright (C) 2002-2003 SnapGear Inc * * Released under GPL */ #ifndef __MTD_DOC2000_H__ ...
1001-study-uboot
include/linux/mtd/doc2000.h
C
gpl3
5,647
/* * MTD partitioning layer definitions * * (C) 2000 Nicolas Pitre <nico@cam.org> * * This code is GPL * * $Id: partitions.h,v 1.17 2005/11/07 11:14:55 gleixner Exp $ */ #ifndef MTD_PARTITIONS_H #define MTD_PARTITIONS_H #include <linux/types.h> /* * Partition definition structure: * * An array of struct ...
1001-study-uboot
include/linux/mtd/partitions.h
C
gpl3
2,675
/* * Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al. * * Released under GPL */ #ifndef __MTD_MTD_H__ #define __MTD_MTD_H__ #include <linux/types.h> #include <div64.h> #include <linux/mtd/mtd-abi.h> #define MTD_CHAR_MAJOR 90 #define MTD_BLOCK_MAJOR 31 #define MAX_MTD_DEVICES 32 #define MTD_E...
1001-study-uboot
include/linux/mtd/mtd.h
C
gpl3
9,463
/* * linux/include/linux/mtd/onenand_regs.h * * OneNAND Register header file * * Copyright (C) 2005-2007 Samsung Electronics * Kyungmin Park <kyungmin.park@samsung.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 ...
1001-study-uboot
include/linux/mtd/onenand_regs.h
C
gpl3
6,812
/* * linux/include/linux/mtd/bbm.h * * NAND family Bad Block Management (BBM) header file * - Bad Block Table (BBT) implementation * * Copyright (c) 2005-2007 Samsung Electronics * Kyungmin Park <kyungmin.park@samsung.com> * * Copyright (c) 2000-2005 * Thomas Gleixner <tglx@linuxtronix.de> * * This...
1001-study-uboot
include/linux/mtd/bbm.h
C
gpl3
4,658
/* * Copied from Linux: * commit 37487a56523d402e25650da16c337acf4cecd13d * Author: Christoph Lameter <clameter@sgi.com> */ #ifndef __LINUX_KBUILD_H #define __LINUX_KBUILD_H #define DEFINE(sym, val) \ asm volatile("\n->" #sym " %0 " #val : : "i" (val)) #define BLANK() asm volatile("\n->" : : ) #define OFFSET(sy...
1001-study-uboot
include/linux/kbuild.h
C
gpl3
430
#ifndef _LINUX_CONFIG_H #define _LINUX_CONFIG_H /* #include <linux/autoconf.h> */ #endif
1001-study-uboot
include/linux/config.h
C
gpl3
91
/* * linux/mdio.h: definitions for MDIO (clause 45) transceivers * Copyright 2006-2009 Solarflare Communications Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation, incorporat...
1001-study-uboot
include/linux/mdio.h
C
gpl3
13,289
/* * Copyright 2004, 2007 Freescale Semiconductor. * Copyright(c) 2003 Motorola Inc. */ #ifndef __MPC85xx_H__ #define __MPC85xx_H__ /* define for common ppc_asm.tmpl */ #define EXC_OFF_SYS_RESET 0x100 /* System reset */ #define _START_OFFSET 0 #if defined(CONFIG_E500) #include <e500.h> #endif /* * SCCR - Syste...
1001-study-uboot
include/mpc85xx.h
C
gpl3
2,002
/* * (C) Copyright 2008 Semihalf * * (C) Copyright 2000-2005 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Publi...
1001-study-uboot
include/image.h
C
gpl3
21,346
#ifndef _SPD_SDRAM_H_ #define _SPD_SDRAM_H_ long int spd_sdram(void); #endif
1001-study-uboot
include/spd_sdram.h
C
gpl3
79
/* * (C) Copyright 2001 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free S...
1001-study-uboot
include/rtc.h
C
gpl3
1,935
/* * (C) Copyright 2009 Faraday Technology * Po-Yu Chuang <ratbert@faraday-tech.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your optio...
1001-study-uboot
include/faraday/ftsdmc020.h
C
gpl3
3,166
/* * Faraday FTSDC010 Secure Digital Memory Card Host Controller * * Copyright (C) 2011 Andes Technology Corporation * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License ...
1001-study-uboot
include/faraday/ftsdc010.h
C
gpl3
9,326
/* * (C) Copyright 2009 Faraday Technology * Po-Yu Chuang <ratbert@faraday-tech.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your optio...
1001-study-uboot
include/faraday/ftsmc020.h
C
gpl3
2,611
/* * (C) Copyright 2009 Faraday Technology * Po-Yu Chuang <ratbert@faraday-tech.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your optio...
1001-study-uboot
include/faraday/fttmr010.h
C
gpl3
2,375
/* * Watchdog driver for the FTWDT010 Watch Dog Driver * * (c) Copyright 2004 Faraday Technology Corp. (www.faraday-tech.com) * Based on sa1100_wdt.c by Oleg Drokin <green@crimea.edu> * Based on SoftDog driver by Alan Cox <alan@redhat.com> * * Copyright (C) 2011 Andes Technology Corporation * Macpaul Lin, Andes...
1001-study-uboot
include/faraday/ftwdt010_wdt.h
C
gpl3
3,700
/* * Copyright (C) 2011 Andes Technology Corporation * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 ...
1001-study-uboot
include/faraday/ftahbc020s.h
C
gpl3
1,973
/* * (C) Copyright 2009 Faraday Technology * Po-Yu Chuang <ratbert@faraday-tech.com> * * (C) Copyright 2011 Andes Technology Corp * Macpaul Lin <macpaul@andestech.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ...
1001-study-uboot
include/faraday/ftsdmc021.h
C
gpl3
5,798
/* * (C) Copyright 2009 Faraday Technology * Po-Yu Chuang <ratbert@faraday-tech.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your optio...
1001-study-uboot
include/faraday/ftpmu010.h
C
gpl3
8,057
/* * (C) Copyright 2010 * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.de * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free...
1001-study-uboot
include/gdsys_fpga.h
C
gpl3
3,381
#ifndef __CRAMFS_H #define __CRAMFS_H #define CRAMFS_MAGIC 0x28cd3d45 /* some random number */ #define CRAMFS_SIGNATURE "Compressed ROMFS" /* * Width of various bitfields in struct cramfs_inode. * Primarily used to generate warnings in mkcramfs. */ #define CRAMFS_MODE_WIDTH 16 #define CRAMFS_UID_WIDTH 16 #define ...
1001-study-uboot
include/cramfs/cramfs_fs.h
C
gpl3
3,177
#ifndef _CRAMFS_FS_SB #define _CRAMFS_FS_SB /* * cramfs super-block data in memory */ struct cramfs_sb_info { unsigned long magic; unsigned long size; unsigned long blocks; unsigned long files; unsigned long flags; #ifdef CONFIG_CRAMFS_LINEAR unsigned long linear_phys_addr; char * linear_...
1001-study-uboot
include/cramfs/cramfs_fs_sb.h
C
gpl3
349
/* * (C) Copyright 2006 DENX Software Engineering * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either vers...
1001-study-uboot
include/da9030.h
C
gpl3
3,668
#ifndef _ERRNO_H #include <asm-generic/errno.h> extern int errno; #define __set_errno(val) do { errno = val; } while (0) #endif /* _ERRNO_H */
1001-study-uboot
include/errno.h
C
gpl3
147
/* * Enable all PHYs * * This software may be used and distributed according to the * terms of the GNU Public License, Version 2, incorporated * herein by reference. * * Copyright 2011 Freescale Semiconductor, Inc. * author Andy Fleming * */ #ifndef _CONFIG_PHYLIB_ALL_H #define _CONFIG_PHYLIB_ALL_H #ifdef CO...
1001-study-uboot
include/config_phylib_all_drivers.h
C
gpl3
721
/* *========================================================================== * * crc.h * * Interface for the CRC algorithms. * *========================================================================== *####ECOSGPLCOPYRIGHTBEGIN#### * ------------------------------------------- * This file is par...
1001-study-uboot
include/crc.h
C
gpl3
3,264
/* * include/asm-ppc/mpc5xxx.h * * Prototypes, etc. for the Motorola MPC5xxx * embedded cpu chips * * 2003 (c) MontaVista, Software, Inc. * Author: Dale Farnsworth <dfarnsworth@mvista.com> * * 2003 (C) Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contribut...
1001-study-uboot
include/mpc5xxx.h
C
gpl3
33,337
/*********************************************************************** * * Copyright (C) 2004 by FS Forth-Systeme GmbH. * All rights reserved. * * $Id: ns9750_ser.h,v 1.1 2004/02/16 10:37:20 mpietrek Exp $ * @Author: Markus Pietrek * @References: [1] NS9750 Hardware Reference, December 2003 * * This program ...
1001-study-uboot
include/ns9750_ser.h
C
gpl3
7,939
/* * (C) Copyright 2000 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Sof...
1001-study-uboot
include/w83c553f.h
C
gpl3
7,355
/* * (C) Copyright 2002 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * (C) Copyright 2010 * Michael Zaidman, Kodak, michael.zaidman@kodak.com * post_word_{load|store} cleanup. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can re...
1001-study-uboot
include/post.h
C
gpl3
6,179
/* * (C) Copyright 2000-2004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the F...
1001-study-uboot
include/part.h
C
gpl3
5,993
/* * NOTE: DAVICOM ethernet Physical layer * * Version: @(#)DM9161.h 1.0.0 01/10/2001 * * Authors: ATMEL Rousset * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version ...
1001-study-uboot
include/dm9161.h
C
gpl3
5,092
/* * (C) Copyright 2008 * Benjamin Warren, biggerbadderben@gmail.com * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Fou...
1001-study-uboot
include/netdev.h
C
gpl3
5,965
/* * GRUB -- GRand Unified Bootloader * Copyright (C) 2000, 2001 Free Software Foundation, Inc. * * (C) Copyright 2003 Sysgo Real-Time Solutions, AG <www.elinos.com> * Pavel Bartusek <pba@sysgo.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU ...
1001-study-uboot
include/ext2fs.h
C
gpl3
2,214
/*********************************************************************** * * Copyright (C) 2004 by FS Forth-Systeme GmbH. * All rights reserved. * * $Id: ns9750_mem.h,v 1.1 2004/02/16 10:37:20 mpietrek Exp $ * @Author: Markus Pietrek * @Descr: Definitions for Memory Control Module * @References: [1] NS9750 Hard...
1001-study-uboot
include/ns9750_mem.h
C
gpl3
6,181
#ifndef _MPC8XX_IRQ_H #define _MPC8XX_IRQ_H /* The MPC8xx cores have 16 possible interrupts. There are eight * possible level sensitive interrupts assigned and generated internally * from such devices as CPM, PCMCIA, RTC, PIT, TimeBase and Decrementer. * There are eight external interrupts (IRQs) that can be confi...
1001-study-uboot
include/mpc8xx_irq.h
C
gpl3
1,779
/* * (C) Copyright 2000 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published ...
1001-study-uboot
include/stdio_dev.h
C
gpl3
3,398
/* * Copyright (C) 2003 Arabella Software Ltd. * Yuli Barcohen <yuli@arabellasw.com> * * Serial Presence Detect (SPD) EEPROM format according to the * Intel's PC SDRAM Serial Presence Detect (SPD) Specification, * revision 1.2B, November 1999 * * This program is free software; you can redistribute it and/or * ...
1001-study-uboot
include/spd.h
C
gpl3
5,270
/* * (C) Copyright 2004, Psyent Corporation <www.psyent.com> * Scott McNutt <smcnutt@psyent.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * publis...
1001-study-uboot
include/nios2-io.h
C
gpl3
6,932
/* * (C) Copyright 2003 * Martin Winistoerfer, martinwinistoerfer@gmx.ch. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Softwar...
1001-study-uboot
include/mpc5xx.h
C
gpl3
8,520
/* * Copyright (c) 2011 The Chromium OS Authors. * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version ...
1001-study-uboot
include/os.h
C
gpl3
2,715
/* * (C) Copyright 2008 * Niklaus Giger, niklaus.giger@member.fsf.org * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Fo...
1001-study-uboot
include/vxworks.h
C
gpl3
1,649
/* * (C) Copyright 2005-2009 * Jens Scharsig @ BuS Elektronik GmbH & Co. KG, <esw@bus-elektronik.de> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * pu...
1001-study-uboot
include/bus_vcxk.h
C
gpl3
1,382
/* * NOTE: DAVICOM DM9000 ethernet driver interface * * Authors: Remy Bohmer <linux@bohmer.net> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Fou...
1001-study-uboot
include/dm9000.h
C
gpl3
697
/*********************************************************************** * * Copyright (C) 2004 by FS Forth-Systeme GmbH. * All rights reserved. * * $Id: ns9750_eth.h,v 1.2 2004/02/24 13:25:39 mpietrek Exp $ * @Author: Markus Pietrek * @References: [1] NS9750 Hardware Reference, December 2003 * [2]...
1001-study-uboot
include/lxt971a.h
C
gpl3
6,016
/*----------------------------------------------------------------------------+ | This source code is dual-licensed. You may use it under the terms of the | GNU General Public License version 2, or under the license below. | | This source code has been made available to you by IBM on an AS-IS | basis. Anyone recei...
1001-study-uboot
include/miiphy.h
C
gpl3
4,783
/* * NOTE: MICREL ethernet Physical layer * * Version: KS8721.h * * Authors: Eric Benard (based on dm9161.h) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of...
1001-study-uboot
include/ks8721.h
C
gpl3
2,425
/* * (C) Copyright 2003 Stefan Roese, stefan.roese@esd-electronics.com * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Fo...
1001-study-uboot
include/universe.h
C
gpl3
4,032
#ifndef __LINUX_PS2MULT_H #define __LINUX_PS2MULT_H #define kbd_request_region() ps2mult_init() #define kbd_request_irq(handler) ps2mult_request_irq(handler) #define kbd_read_input() ps2mult_read_input() #define kbd_read_status() ps2mult_read_status() #define kbd_write_output(val) ps2mult_write_output(val) #defin...
1001-study-uboot
include/ps2mult.h
C
gpl3
1,501
/* * (c) 2009 Magnus Lilja <lilja.magnus@gmail.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either ve...
1001-study-uboot
include/fsl_nfc.h
C
gpl3
4,437
/* * (C) Copyright 2006, Imagos S.a.s <www.imagos.it> * Renato Andreola <renato.andreola@imagos.it> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * pub...
1001-study-uboot
include/nios2-yanu.h
C
gpl3
5,543
/* * Copyright (C) 2004-2007, 2010 Freescale Semiconductor, Inc. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundati...
1001-study-uboot
include/mpc83xx.h
C
gpl3
44,912
/* * (C) Copyright 2001 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free So...
1001-study-uboot
include/i2c.h
C
gpl3
6,644
/* * (C) Copyright 2002 * Rich Ireland, Enterasys Networks, rireland@enterasys.com. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fr...
1001-study-uboot
include/xilinx.h
C
gpl3
4,808
#ifndef _LIBFDT_H #define _LIBFDT_H /* * libfdt - Flat Device Tree manipulation * Copyright (C) 2006 David Gibson, IBM Corporation. * * libfdt is dual licensed: you can use it either under the terms of * the GPL, or the BSD license, at your option. * * a) This library is free software; you can redistribute it a...
1001-study-uboot
include/libfdt.h
C
gpl3
46,496
/* * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; ei...
1001-study-uboot
include/MCD_dma.h
C
gpl3
11,954
/* * Porting to U-Boot: * * (C) Copyright 2010 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * Lattice's ispVME Embedded Tool to load Lattice's FPGA: * * Lattice Semiconductor Corp. Copyright 2009 * * See file CREDITS for list of people who contributed to this * project. * * This program is...
1001-study-uboot
include/lattice.h
C
gpl3
10,007
/* * (C) Copyright 2001 * Denis Peter, MPL AG Switzerland * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; ei...
1001-study-uboot
include/usb.h
C
gpl3
12,367
#ifndef _MII_PHY_H_ #define _MII_PHY_H_ void mii_discover_phy(void); unsigned short mii_phy_read(unsigned short reg); void mii_phy_write(unsigned short reg, unsigned short val); #endif
1001-study-uboot
include/mii_phy.h
C
gpl3
187
/* * (C) Copyright 2002 * Stäubli Faverges - <www.staubli.com> * Pierre AUBERT p.aubert@staubli.com * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * p...
1001-study-uboot
include/fdc.h
C
gpl3
1,205
/* * Copyright 2007 Freescale Semiconductor, Inc. * * This file is licensed under the terms of the GNU General Public * License Version 2. This file is licensed "as is" without any * warranty of any kind, whether express or implied. */ #ifndef _CONFIG_CMD_ALL_H #define _CONFIG_CMD_ALL_H /* * Alphabetical list ...
1001-study-uboot
include/config_cmd_all.h
C
gpl3
4,181
#ifndef _RADEON_H #define _RADEON_H #define RADEON_REGSIZE 0x4000 #define MM_INDEX 0x0000 #define MM_DATA 0x0004 #define BUS_CNTL 0x0030 #define HI_STAT 0x004C #define BUS_CNTL1 0x0034 #define I2C_CNTL_1 0x0094 #define CONFIG_CNTL 0x00E0 #define CONFIG_MEMSIZE 0x00F8 #define CONFIG_APER_0_BASE ...
1001-study-uboot
include/radeon.h
C
gpl3
81,765
/* * (C) Copyright 2003 * Steven Scholz, imc Measurement & Control, steven.scholz@imc-berlin.de * * (C) Copyright 2002 * Rich Ireland, Enterasys Networks, rireland@enterasys.com. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute ...
1001-study-uboot
include/ACEX1K.h
C
gpl3
2,747
#ifndef _NODE_INFO #define _NODE_INFO /* * Info we use to search for a flash node in DTB. */ struct node_info { const char *compat; /* compatible string */ int type; /* mtd flash type */ }; #endif
1001-study-uboot
include/mtd_node.h
C
gpl3
203
/* * (C) Copyright 2000 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free S...
1001-study-uboot
include/ide.h
C
gpl3
1,950
/* * libfdt - Flat Device Tree manipulation (build/run environment adaptation) * Copyright (C) 2007 Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com * Original version written by David Gibson, IBM Corporation. * * This library is free software; you can redistribute it and/or * modify it under the terms of the ...
1001-study-uboot
include/libfdt_env.h
C
gpl3
1,289
/* * (C) Copyright 2003 * Gerry Hamel, geh@ti.com, Texas Instruments * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later ver...
1001-study-uboot
include/circbuf.h
C
gpl3
1,384
/* * PCI Class, Vendor and Device IDs * * Please keep sorted. * * Do not add new entries to this file unless the definitions * are shared between multiple drivers. */ /* Device classes and subclasses */ #define PCI_CLASS_NOT_DEFINED 0x0000 #define PCI_CLASS_NOT_DEFINED_VGA 0x0001 #define PCI_BASE_CLASS_STORA...
1001-study-uboot
include/pci_ids.h
C
gpl3
115,059
/* * (C) Copyright 2004 * * Pantelis Antoniou <panto@intracom.gr> * Intracom S.A. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fr...
1001-study-uboot
include/sed156x.h
C
gpl3
1,321
/* * (C) Copyright 2007 * DENX Software Engineering, Anatolij Gustschin, agust@denx.de * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the...
1001-study-uboot
include/mb862xx.h
C
gpl3
3,356
/* * linux/include/asm-arm/hardware/clps7111.h * * This file contains the hardware definitions of the CLPS7111 internal * registers. * * Copyright (C) 2000 Deep Blue Solutions Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public Licens...
1001-study-uboot
include/clps7111.h
C
gpl3
8,862
/* Rubin encoder/decoder header */ /* work started at : aug 3, 1994 */ /* last modification : aug 15, 1994 */ /* $Id: compr_rubin.h,v 1.1 2002/01/16 23:34:32 nyet Exp $ */ #define RUBIN_REG_SIZE 16 #define UPPER_BIT_RUBIN (((long) 1)<<(RUBIN_REG_SIZE-1)) #define LOWER_BITS_RUBIN ((((long) 1)<<(RUBI...
1001-study-uboot
include/jffs2/compr_rubin.h
C
gpl3
467
u32 jffs2_1pass_ls(struct part_info *part,const char *fname); u32 jffs2_1pass_load(char *dest, struct part_info *part,const char *fname); u32 jffs2_1pass_info(struct part_info *part);
1001-study-uboot
include/jffs2/jffs2_1pass.h
C
gpl3
184
/*------------------------------------------------------------------------- * Filename: mini_inflate.h * Version: $Id: mini_inflate.h,v 1.2 2002/01/17 00:53:20 nyet Exp $ * Copyright: Copyright (C) 2001, Russ Dill * Author: Russ Dill <Russ.Dill@asu.edu> * Description: Mini deflate implement...
1001-study-uboot
include/jffs2/mini_inflate.h
C
gpl3
2,854
#ifndef load_kernel_h #define load_kernel_h /*------------------------------------------------------------------------- * Filename: load_kernel.h * Version: $Id: load_kernel.h,v 1.3 2002/01/25 01:34:11 nyet Exp $ * Copyright: Copyright (C) 2001, Russ Dill * Author: Russ Dill <Russ.Dill@asu.edu...
1001-study-uboot
include/jffs2/load_kernel.h
C
gpl3
2,850
/* * JFFS2 -- Journalling Flash File System, Version 2. * * Copyright (C) 2001 Red Hat, Inc. * * Created by David Woodhouse <dwmw2@cambridge.redhat.com> * * The original JFFS, from which the design for JFFS2 was derived, * was designed and implemented by Axis Communications AB. * * The contents of this file a...
1001-study-uboot
include/jffs2/jffs2.h
C
gpl3
8,204
#ifndef __KEYBOARD_H #define __KEYBOARD_H #ifdef CONFIG_PS2MULT #include <ps2mult.h> #endif #if !defined(kbd_request_region) || \ !defined(kbd_request_irq) || \ !defined(kbd_read_input) || \ !defined(kbd_read_status) || \ !defined(kbd_write_output) || \ !defined(kbd_write_command) #error PS/2 low ...
1001-study-uboot
include/keyboard.h
C
gpl3
537
/* (C) Copyright 2002 * Detlev Zundel, DENX Software Engineering, dzu@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Sof...
1001-study-uboot
include/bmp_layout.h
C
gpl3
2,197
#ifndef DO_DEPS_ONLY #include <generated/generic-asm-offsets.h> /* #include <generated/asm-offsets.h> */ #endif
1001-study-uboot
include/asm-offsets.h
C
gpl3
114
/* * (C) Copyright 2002 * Rich Ireland, Enterasys Networks, rireland@enterasys.com. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fr...
1001-study-uboot
include/altera.h
C
gpl3
4,372
/***************************************************************************** * (C) Copyright 2003; Tundra Semiconductor Corp. * (C) Copyright 2006; Freescale Semiconductor Corp. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as *...
1001-study-uboot
include/tsi108.h
C
gpl3
6,507
/* * (C) Copyright 2001 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free ...
1001-study-uboot
include/watchdog.h
C
gpl3
2,462