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
/* * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/ * * Driver for SPI controller on DaVinci. Based on atmel_spi.c * by Atmel Corporation * * Copyright (C) 2007 Atmel Corporation * * See file CREDITS for list of people who contributed to this * project. * * This program is free softwa...
1001-study-uboot
drivers/spi/davinci_spi.c
C
gpl3
7,669
/* * Copyright (C) 2008, Guennadi Liakhovetski <lg@denx.de> * * 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
drivers/spi/mxc_spi.c
C
gpl3
12,897
/* * Copyright (C) 2010 Dirk Behme <dirk.behme@googlemail.com> * * Driver for McSPI controller on OMAP3. Based on davinci_spi.c * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/ * * Copyright (C) 2007 Atmel Corporation * * Parts taken from linux/drivers/spi/omap2_mcspi.c * Copyright (C) ...
1001-study-uboot
drivers/spi/omap3_spi.c
C
gpl3
9,035
# # (C) Copyright 2000-2007 # 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 Softwa...
1001-study-uboot
drivers/spi/Makefile
Makefile
gpl3
2,074
/* * eSPI controller driver. * * Copyright 2010-2011 Freescale Semiconductor, Inc. * Author: Mingkai Hu (Mingkai.hu@freescale.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; eithe...
1001-study-uboot
drivers/spi/fsl_espi.c
C
gpl3
8,833
/* * SH SPI driver * * Copyright (C) 2011 Renesas Solutions Corp. * * 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; version 2 of the License. * * This program is distributed in the hope...
1001-study-uboot
drivers/spi/sh_spi.c
C
gpl3
5,527
/* * (C) Copyright 2009 * Frank Bodammer <frank.bodammer@gcd-solutions.de> * (C) Copyright 2009 Semihalf, Grzegorz Bernacki * * 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...
1001-study-uboot
drivers/spi/mpc52xx_spi.c
C
gpl3
2,872
/* * Register definitions for the Atmel AT32/AT91 SPI Controller */ /* Register offsets */ #define ATMEL_SPI_CR 0x0000 #define ATMEL_SPI_MR 0x0004 #define ATMEL_SPI_RDR 0x0008 #define ATMEL_SPI_TDR 0x000c #define ATMEL_SPI_SR 0x0010 #define ATMEL_SPI_IER 0x0014 #define ATMEL_SPI_IDR 0x0018 #define ATME...
1001-study-uboot
drivers/spi/atmel_spi.h
C
gpl3
2,739
/* * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/ * * Register definitions for the DaVinci SPI Controller * * 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; eithe...
1001-study-uboot
drivers/spi/davinci_spi.h
C
gpl3
2,672
/* * Opencore tiny_spi driver * * http://opencores.org/project,tiny_spi * * based on bfin_spi.c * Copyright (c) 2005-2008 Analog Devices Inc. * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw> * * Licensed under the GPL-2 or later. */ #include <common.h> #include <asm/io.h> #include <malloc.h> #include ...
1001-study-uboot
drivers/spi/oc_tiny_spi.c
C
gpl3
5,935
/* * Register definitions for the Andes SPI Controller * * (C) Copyright 2011 Andes Technology * 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 the Free Software Foundation; eit...
1001-study-uboot
drivers/spi/andes_spi.h
C
gpl3
5,658
/* * * (C) Copyright 2000-2003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * Copyright (C) 2004-2009 Freescale Semiconductor, Inc. * TsiChung Liew (Tsi-Chung.Liew@freescale.com) * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can...
1001-study-uboot
drivers/spi/cf_spi.c
C
gpl3
8,888
/* * Copyright (C) 2007 Atmel Corporation * * 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 2 of...
1001-study-uboot
drivers/spi/atmel_spi.c
C
gpl3
4,794
/* * Register definitions for the OMAP3 McSPI Controller * * Copyright (C) 2010 Dirk Behme <dirk.behme@googlemail.com> * * Parts taken from linux/drivers/spi/omap2_mcspi.c * Copyright (C) 2005, 2006 Nokia Corporation * * Modified by Ruslan Araslanov <ruslan.araslanov@vitecmm.com> * * See file CREDITS for list...
1001-study-uboot
drivers/spi/omap3_spi.h
C
gpl3
3,922
/* * (C) Copyright 2011 * eInfochips Ltd. <www.einfochips.com> * Written-by: Ajay Bhargav <ajay.bhargav@einfochips.com> * * (C) Copyright 2009 * Marvell Semiconductor <www.marvell.com> * Based on SSP driver * Written-by: Lei Wen <leiwen@marvell.com> * * See file CREDITS for list of people who contributed to t...
1001-study-uboot
drivers/spi/armada100_spi.c
C
gpl3
5,200
/* * Driver for Blackfin On-Chip SPI device * * Copyright (c) 2005-2010 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ /*#define DEBUG*/ #include <common.h> #include <malloc.h> #include <spi.h> #include <asm/blackfin.h> #include <asm/dma.h> #include <asm/gpio.h> #include <asm/portmux.h> #include...
1001-study-uboot
drivers/spi/bfin_spi.c
C
gpl3
9,737
/* * Copyright (c) 2006 Ben Warren, Qstreams Networks Inc. * With help from the common/soft_spi and arch/powerpc/cpu/mpc8260 drivers * * 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...
1001-study-uboot
drivers/spi/mpc8xxx_spi.c
C
gpl3
4,920
/* * Freescale i.MX28 SPI driver * * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> * on behalf of DENX Software Engineering GmbH * * 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
drivers/spi/mxs_spi.c
C
gpl3
4,736
/* * [origin: Linux kernel drivers/watchdog/at91sam9_wdt.c] * * Watchdog driver for Atmel AT91SAM9x processors. * * Copyright (C) 2008 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> * Copyright (C) 2008 Renaud CERRATO r.cerrato@til-technologies.fr * * This program is free software; you can redistribut...
1001-study-uboot
drivers/watchdog/at91sam9_wdt.c
C
gpl3
2,143
# # (C) Copyright 2008 # 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 Software Fo...
1001-study-uboot
drivers/watchdog/Makefile
Makefile
gpl3
1,414
/* * 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
drivers/watchdog/ftwdt010_wdt.c
C
gpl3
2,698
/* Driver for ATMEL DataFlash support * Author : Hamid Ikdoumi (Atmel) * * 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 ve...
1001-study-uboot
drivers/mtd/at45.c
C
gpl3
19,894
/* * (C) Copyright 2002-2004 * Brad Kemp, Seranoa Networks, Brad.Kemp@seranoa.com * * Copyright (C) 2003 Arabella Software Ltd. * Yuli Barcohen <yuli@arabellasw.com> * * Copyright (C) 2004 * Ed Okerson * * Copyright (C) 2006 * Tolunay Orkun <listmember@orkun.us> * * See file CREDITS for list of people who ...
1001-study-uboot
drivers/mtd/cfi_flash.c
C
gpl3
60,009
/* LowLevel function for ATMEL DataFlash support * Author : Hamid Ikdoumi (Atmel) * * 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) a...
1001-study-uboot
drivers/mtd/dataflash.c
C
gpl3
13,816
/* * (C) Copyright 2007 * Michael Schwingen, <michael@schwingen.org> * * based in great part on jedec_probe.c from linux kernel: * (C) 2000 Red Hat. GPL'd. * Occasionally maintained by Thayne Harbaugh tharbaugh at lnxi dot com * * See file CREDITS for list of people who contributed to this * project. * * Thi...
1001-study-uboot
drivers/mtd/jedec_flash.c
C
gpl3
11,967
/* * (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
drivers/mtd/ftsmc020.c
C
gpl3
1,446
/* * Simple MTD partitioning layer * * (C) 2000 Nicolas Pitre <nico@cam.org> * * This code is GPL * * 02-21-2002 Thomas Gleixner <gleixner@autronix.de> * added support for read_oob, write_oob */ #include <common.h> #include <malloc.h> #include <asm/errno.h> #include <linux/types.h> #include <linux/list.h>...
1001-study-uboot
drivers/mtd/mtdpart.c
C
gpl3
13,143
/* * S3C64XX/S5PC100 OneNAND driver at U-Boot * * Copyright (C) 2008-2009 Samsung Electronics * Kyungmin Park <kyungmin.park@samsung.com> * * Implementation: * Emulate the pseudo BufferRAM * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can r...
1001-study-uboot
drivers/mtd/onenand/samsung.c
C
gpl3
15,565
/* * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> * * Based on code: * Copyright (C) 2005-2009 Samsung Electronics * 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 ...
1001-study-uboot
drivers/mtd/onenand/onenand_spl.c
C
gpl3
3,948
/* * drivers/mtd/onenand/onenand_uboot.c * * Copyright (C) 2005-2008 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 Fo...
1001-study-uboot
drivers/mtd/onenand/onenand_uboot.c
C
gpl3
1,346
# # Copyright (C) 2005-2007 Samsung Electronics. # 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 GNU General Public License as # published by the Fr...
1001-study-uboot
drivers/mtd/onenand/Makefile
Makefile
gpl3
1,476
/* * linux/drivers/mtd/onenand/onenand_base.c * * Copyright (C) 2005-2007 Samsung Electronics * Kyungmin Park <kyungmin.park@samsung.com> * * Credits: * Adrian Hunter <ext-adrian.hunter@nokia.com>: * auto-placement support, read-while load support, various fixes * Copyright (C) Nokia Corpora...
1001-study-uboot
drivers/mtd/onenand/onenand_base.c
C
gpl3
72,988
/* * linux/drivers/mtd/onenand/onenand_bbt.c * * Bad Block Table support for the OneNAND driver * * Copyright(c) 2005-2008 Samsung Electronics * Kyungmin Park <kyungmin.park@samsung.com> * * TODO: * Split BBT core and chip specific BBT. * * This program is free software; you can redistribute it and/o...
1001-study-uboot
drivers/mtd/onenand/onenand_bbt.c
C
gpl3
7,217
# # (C) Copyright 2000-2007 # 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 Softwa...
1001-study-uboot
drivers/mtd/Makefile
Makefile
gpl3
1,806
/* * MTD device concatenation layer * * (C) 2002 Robert Kaiser <rkaiser@sysgo.de> * * NAND support by Christian Gan <cgan@iders.ca> * * This code is GPL */ #include <linux/mtd/mtd.h> #include <linux/mtd/compat.h> #include <linux/mtd/concat.h> #include <ubi_uboot.h> /* * Our storage structure: * Subdev point...
1001-study-uboot
drivers/mtd/mtdconcat.c
C
gpl3
19,350
/* * (C) Copyright 2009 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.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
drivers/mtd/spr_smi.c
C
gpl3
12,000
/* * Core registration and callback routines for MTD * drivers and users. * * 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. */ #include <linux/mtd/mtd.h> #include <linux/mtd/co...
1001-study-uboot
drivers/mtd/mtdcore.c
C
gpl3
4,505
/* * (C) Copyright 2008 Semihalf * * Written by: Piotr Ziecik <kosmo@semihalf.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
drivers/mtd/cfi_mtd.c
C
gpl3
6,458
/* Integrated Flash Controller NAND Machine Driver * * Copyright (c) 2011 Freescale Semiconductor, Inc * * Authors: Dipen Dudhat <Dipen.Dudhat@freescale.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...
1001-study-uboot
drivers/mtd/nand/fsl_ifc_nand.c
C
gpl3
23,329
/* * (C) Copyright 2004-2008 Texas Instruments, <www.ti.com> * Rohit Choraria <rohitkc@ti.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 * publishe...
1001-study-uboot
drivers/mtd/nand/omap_gpmc.c
C
gpl3
11,117
/* * drivers/mtd/nand/diskonchip.c * * (C) 2003 Red Hat, Inc. * (C) 2004 Dan Brown <dan_brown@ieee.org> * (C) 2004 Kalev Lember <kalev@smartlink.ee> * * Author: David Woodhouse <dwmw2@infradead.org> * Additional Diskonchip 2000 and Millennium support by Dan Brown <dan_brown@ieee.org> * Diskonchip Millennium Pl...
1001-study-uboot
drivers/mtd/nand/diskonchip.c
C
gpl3
50,680
/* * (C) Copyright 2006-2008 * Stefan Roese, DENX Software Engineering, sr@denx.de. * * 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...
1001-study-uboot
drivers/mtd/nand/nand_spl_simple.c
C
gpl3
7,770
/* * (C) Copyright 2007-2008 * Stelian Pop <stelian@popies.net> * Lead Tech Design <www.leadtechdesign.com> * * (C) Copyright 2006 ATMEL Rousset, Lacressonniere Nicolas * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or ...
1001-study-uboot
drivers/mtd/nand/atmel_nand.c
C
gpl3
8,993
/* * drivers/mtd/nand_bbt.c * * Overview: * Bad block table support for the NAND driver * * Copyright (C) 2004 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 t...
1001-study-uboot
drivers/mtd/nand/nand_bbt.c
C
gpl3
33,345
/* * Platform independend driver for JZ4740. * * Copyright (c) 2007 Ingenic Semiconductor Inc. * Author: <jlwei@ingenic.cn> * * 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 versi...
1001-study-uboot
drivers/mtd/nand/jz4740_nand.c
C
gpl3
6,291
/* * Copyright 2004-2007 Freescale Semiconductor, Inc. * Copyright 2008 Sascha Hauer, kernel@pengutronix.de * Copyright 2009 Ilya Yanok, <yanok@emcraft.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 S...
1001-study-uboot
drivers/mtd/nand/mxc_nand.c
C
gpl3
35,463
/* * Copyright 2004-2008 Freescale Semiconductor, Inc. * Copyright 2009 Semihalf. * (C) Copyright 2009 Stefan Roese <sr@denx.de> * * Based on original driver from Freescale Semiconductor * written by John Rigby <jrigby@freescale.com> on basis * of drivers/mtd/nand/mxc_nand.c. Reworked and extended * Piotr Zieci...
1001-study-uboot
drivers/mtd/nand/mpc5121_nfc.c
C
gpl3
16,817
/* * (C) Copyright 2006 DENX Software Engineering * * Implementation for U-Boot 1.1.6 by Samsung * * (C) Copyright 2008 * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistr...
1001-study-uboot
drivers/mtd/nand/s3c64xx.c
C
gpl3
7,634
/* * (C) Copyright 2007 STMicroelectronics, <www.st.com> * (C) Copyright 2009 Alessandro Rubini <rubini@unipv.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 Lic...
1001-study-uboot
drivers/mtd/nand/nomadik.c
C
gpl3
6,948
/* Freescale Enhanced Local Bus Controller FCM NAND driver * * Copyright (c) 2006-2008 Freescale Semiconductor * * Authors: Nick Spence <nick.spence@freescale.com>, * Scott Wood <scottwood@freescale.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of th...
1001-study-uboot
drivers/mtd/nand/fsl_elbc_nand.c
C
gpl3
22,007
# # (C) Copyright 2006 # 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 Software Fo...
1001-study-uboot
drivers/mtd/nand/Makefile
Makefile
gpl3
2,555
/* * (C) Copyright 2006 OpenMoko, Inc. * Author: Harald Welte <laforge@openmoko.org> * * 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
drivers/mtd/nand/s3c2440_nand.c
C
gpl3
7,992
/* * (C) Copyright 2005 * 2N Telekomunikace, a.s. <www.2n.cz> * Ladislav Michl <michl@2n.cz> * * 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 * version 2 as...
1001-study-uboot
drivers/mtd/nand/nand.c
C
gpl3
2,726
/* * drivers/mtd/nandids.c * * Copyright (C) 2002 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. * */ #include <common.h> #include <...
1001-study-uboot
drivers/mtd/nand/nand_ids.c
C
gpl3
5,640
/* * NAND driver for TI DaVinci based boards. * * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net> * * Based on Linux DaVinci NAND driver by TI. Original copyright follows: */ /* * * linux/drivers/mtd/nand/nand_davinci.c * * NAND Flash Driver * * Copyright (C) 2006 Texas Instruments. * * ---------------...
1001-study-uboot
drivers/mtd/nand/davinci_nand.c
C
gpl3
17,732
/* * (C) Copyright 2009 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafulla@marvell.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 Pu...
1001-study-uboot
drivers/mtd/nand/kirkwood_nand.c
C
gpl3
2,180
/* * drivers/mtd/nand/nand_util.c * * Copyright (C) 2006 by Weiss-Electronic GmbH. * All rights reserved. * * @author: Guido Classen <clagix@gmail.com> * @descr: NAND Flash support * @references: borrowed heavily from Linux mtd-utils code: * flash_eraseall.c by Arcom Control System Ltd * nandwrite.c by Stev...
1001-study-uboot
drivers/mtd/nand/nand_util.c
C
gpl3
17,602
/* * 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
drivers/mtd/nand/fsl_upm.c
C
gpl3
4,788
/* * Freescale i.MX28 NAND flash driver * * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> * on behalf of DENX Software Engineering GmbH * * Based on code from LTIB: * Freescale GPMI NFC NAND Flash Driver * * Copyright (C) 2010 Freescale Semiconductor, Inc. * Copyright (C) 2008 Embedded Alley Solution...
1001-study-uboot
drivers/mtd/nand/mxs_nand.c
C
gpl3
30,983
/* * Driver for Blackfin on-chip NAND controller. * * Enter bugs at http://blackfin.uclinux.org/ * * Copyright (c) 2007-2008 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ /* TODO: * - move bit defines into mach-common/bits/nand.h * - try and replace all IRQSTAT usage with STAT polling * - ha...
1001-study-uboot
drivers/mtd/nand/bfin_nand.c
C
gpl3
9,302
/* * Genericish driver for memory mapped NAND devices * * Copyright (c) 2006-2009 Analog Devices Inc. * Licensed under the GPL-2 or later. */ /* Your board must implement the following macros: * NAND_PLAT_WRITE_CMD(chip, cmd) * NAND_PLAT_WRITE_ADR(chip, cmd) * NAND_PLAT_INIT() * * It may also implement th...
1001-study-uboot
drivers/mtd/nand/nand_plat.c
C
gpl3
1,354
/* * (C) Copyright 2006 * KwikByte <kb9200_dev@kwikbyte.com> * * (C) Copyright 2009 * Matthias Kaehlcke <matthias@kaehlcke.net> * * 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 G...
1001-study-uboot
drivers/mtd/nand/kb9202_nand.c
C
gpl3
4,763
/* * (C) Copyright 2009 * Heiko Schocher, DENX Software Engineering, hs@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
drivers/mtd/nand/kmeter1_nand.c
C
gpl3
3,208
/* * (C) Copyright 2009 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.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
drivers/mtd/nand/spr_nand.c
C
gpl3
3,813
/* * This file contains an ECC algorithm from Toshiba that detects and * corrects 1 bit errors in a 256 byte block of data. * * drivers/mtd/nand/nand_ecc.c * * Copyright (C) 2000-2004 Steven J. Hill (sjhill@realitydiluted.com) * Toshiba America Electronics Components, Inc. * * Copyright...
1001-study-uboot
drivers/mtd/nand/nand_ecc.c
C
gpl3
6,860
/* * Overview: * Platform independend driver for NDFC (NanD Flash Controller) * integrated into IBM/AMCC PPC4xx cores * * (C) Copyright 2006-2009 * Stefan Roese, DENX Software Engineering, sr@denx.de. * * Based on original work by * Thomas Gleixner * Copyright 2006 IBM * * See file CREDITS for list of p...
1001-study-uboot
drivers/mtd/nand/ndfc.c
C
gpl3
6,107
/* * Copyright (C) 2011 * Heiko Schocher, DENX Software Engineering, hs@denx.de. * * 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) a...
1001-study-uboot
drivers/mtd/nand/nand_spl_load.c
C
gpl3
1,667
/* * drivers/mtd/nand.c * * Overview: * This is the generic MTD driver for NAND flash devices. It should be * capable of working with almost all NAND chips currently available. * Basic support for AG-AND chips is provided. * * Additional technical information is available on * http://www.linux-mtd.infr...
1001-study-uboot
drivers/mtd/nand/nand_base.c
C
gpl3
79,623
/* * Error Corrected Code Controller (ECC) - System peripherals regsters. * Based on AT91SAM9260 datasheet revision B. * * 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
drivers/mtd/nand/atmel_nand_ecc.h
C
gpl3
1,332
/* * Copyright 2009(C) Marvell International Ltd. and its affiliates * Prafulla Wadaskar <prafulla@marvell.com> * * Based on drivers/mtd/spi/stmicro.c * * Copyright 2008, Network Appliance Inc. * Jason McMullan <mcmullan@netapp.com> * * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. * TsiChung Liew (Ts...
1001-study-uboot
drivers/mtd/spi/macronix.c
C
gpl3
5,097
/* * Copyright 2008, Network Appliance Inc. * Author: Jason McMullan <mcmullan <at> netapp.com> * Licensed under the GPL-2 or later. */ #include <common.h> #include <malloc.h> #include <spi_flash.h> #include "spi_flash_internal.h" /* M25Pxx-specific commands */ #define CMD_W25_WREN 0x06 /* Write Enable */ #defi...
1001-study-uboot
drivers/mtd/spi/winbond.c
C
gpl3
3,552
/* * (C) Copyright 2010, ucRobotics Inc. * Author: Chong Huang <chuang@ucrobotics.com> * Licensed under the GPL-2 or later. */ #include <common.h> #include <malloc.h> #include <spi_flash.h> #include "spi_flash_internal.h" /* EN25Q128-specific commands */ #define CMD_EN25Q128_WREN 0x06 /* Write Enable */ #defi...
1001-study-uboot
drivers/mtd/spi/eon.c
C
gpl3
2,636
/* * (C) Copyright 2010 * Reinhard Meyer, EMK Elektronik, reinhard.meyer@emk-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 * published by...
1001-study-uboot
drivers/mtd/spi/ramtron.c
C
gpl3
8,446
/* * (C) Copyright 2000-2002 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * Copyright 2008, Network Appliance Inc. * Jason McMullan <mcmullan@netapp.com> * * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. * TsiChung Liew (Tsi-Chung.Liew@freescale.com) * * See file CREDITS for list of peopl...
1001-study-uboot
drivers/mtd/spi/stmicro.c
C
gpl3
4,215
/* * SPI flash interface * * Copyright (C) 2008 Atmel Corporation * Copyright (C) 2010 Reinhard Meyer, EMK Elektronik * * Licensed under the GPL-2 or later. */ #include <common.h> #include <malloc.h> #include <spi.h> #include <spi_flash.h> #include <watchdog.h> #include "spi_flash_internal.h" static void spi_...
1001-study-uboot
drivers/mtd/spi/spi_flash.c
C
gpl3
8,944
# # (C) Copyright 2006 # 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 Software Fo...
1001-study-uboot
drivers/mtd/spi/Makefile
Makefile
gpl3
1,757
/* * Atmel SPI DataFlash support * * Copyright (C) 2008 Atmel Corporation * Licensed under the GPL-2 or later. */ #include <common.h> #include <malloc.h> #include <spi_flash.h> #include "spi_flash_internal.h" /* AT45-specific commands */ #define CMD_AT45_READ_STATUS 0xd7 #define CMD_AT45_ERASE_PAGE 0x81 #defi...
1001-study-uboot
drivers/mtd/spi/atmel.c
C
gpl3
12,063
/* * Copyright (C) 2009 * Albin Tonnerre, Free Electrons <albin.tonnerre@free-electrons.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 ...
1001-study-uboot
drivers/mtd/spi/eeprom_m95xxx.c
C
gpl3
2,961
/* * SPI flash internal definitions * * Copyright (C) 2008 Atmel Corporation */ /* Common parameters -- kind of high, but they should only occur when there * is a problem (and well your system already is broken), so err on the side * of caution in case we're dealing with slower SPI buses and/or processors. */ #...
1001-study-uboot
drivers/mtd/spi/spi_flash_internal.h
C
gpl3
3,493
/* * Driver for SST serial flashes * * (C) Copyright 2000-2002 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * Copyright 2008, Network Appliance Inc. * Jason McMullan <mcmullan@netapp.com> * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. * TsiChung Liew (Tsi-Chung.Liew@freescale.com) * Copyrig...
1001-study-uboot
drivers/mtd/spi/sst.c
C
gpl3
6,614
/* * Copyright (C) 2009 Freescale Semiconductor, Inc. * * Author: Mingkai Hu (Mingkai.hu@freescale.com) * Based on stmicro.c by Wolfgang Denk (wd@denx.de), * TsiChung Liew (Tsi-Chung.Liew@freescale.com), * and Jason McMullan (mcmullan@netapp.com) * * See file CREDITS for list of people who contributed to this ...
1001-study-uboot
drivers/mtd/spi/spansion.c
C
gpl3
4,897
/* Three-wire (MicroWire) serial eeprom driver (for 93C46 and compatibles) */ #include <common.h> #include <asm/ic/ssi.h> /* * Serial EEPROM opcodes, including start bit */ #define EEP_OPC_ERASE 0x7 /* 3-bit opcode */ #define EEP_OPC_WRITE 0x5 /* 3-bit opcode */ #define EEP_OPC_READ 0x6 /* 3-bit opcode *...
1001-study-uboot
drivers/mtd/mw_eeprom.c
C
gpl3
3,898
/* * 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
drivers/mtd/ubi/scan.c
C
gpl3
34,781
/* * Oct 15, 2000 Matt Domsch <Matt_Domsch@dell.com> * Nicer crc32 functions/docs submitted by linux@horizon.com. Thanks! * Code was from the public domain, copyright abandoned. Code was * subsequently included in the kernel, thus was re-licensed under the * GNU GPL v2. * * Oct 12, 2000 Matt Domsch <Matt_Domsc...
1001-study-uboot
drivers/mtd/ubi/crc32.c
C
gpl3
15,723
/* * There are multiple 16-bit CRC polynomials in common use, but this is * *the* standard CRC-32 polynomial, first popularized by Ethernet. * x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x^1+x^0 */ #define CRCPOLY_LE 0xedb88320 #define CRCPOLY_BE 0x04c11db7 /* How many bits at a time to use. Requi...
1001-study-uboot
drivers/mtd/ubi/crc32defs.h
C
gpl3
1,071
/* * 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
drivers/mtd/ubi/eba.c
C
gpl3
34,184
/* * 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
drivers/mtd/ubi/vmt.c
C
gpl3
23,225
/* * 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
drivers/mtd/ubi/kapi.c
C
gpl3
18,978
/* * Copyright (c) International Business Machines Corp., 2006 * Copyright (c) Nokia Corporation, 2006, 2007 * * 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 Licen...
1001-study-uboot
drivers/mtd/ubi/vtbl.c
C
gpl3
23,495
/* * 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
drivers/mtd/ubi/misc.c
C
gpl3
3,141
# # (C) Copyright 2006 # 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 Software Fo...
1001-study-uboot
drivers/mtd/ubi/Makefile
Makefile
gpl3
1,449
/* * 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
drivers/mtd/ubi/debug.h
C
gpl3
4,291
/* * Copyright (c) International Business Machines Corp., 2006 * Copyright (c) Nokia Corporation, 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...
1001-study-uboot
drivers/mtd/ubi/upd.c
C
gpl3
13,006
/* * Copyright (c) International Business Machines Corp., 2006 * Copyright (c) Nokia Corporation, 2006, 2007 * * 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 Licen...
1001-study-uboot
drivers/mtd/ubi/io.c
C
gpl3
38,084
/* * 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
drivers/mtd/ubi/debug.c
C
gpl3
6,643
/* * Copyright (c) International Business Machines Corp., 2006 * Copyright (c) Nokia Corporation, 2006, 2007 * * 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 Licen...
1001-study-uboot
drivers/mtd/ubi/ubi.h
C
gpl3
21,685
/* * 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
drivers/mtd/ubi/scan.h
C
gpl3
5,596
/* * Copyright (c) International Business Machines Corp., 2006 * Copyright (c) Nokia Corporation, 2007 * * 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...
1001-study-uboot
drivers/mtd/ubi/build.c
C
gpl3
33,921
/* * 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
drivers/mtd/ubi/wl.c
C
gpl3
44,819
/* * 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
drivers/mtd/ubi/ubi-media.h
C
gpl3
16,559