r2d.c (940d5b132fab085bd8ec2bcfa5c1dd119785b217) r2d.c (ce14710f4fdfca32123d7efd3ddcbee984ef0ae5)
1/*
2 * Renesas SH7751R R2D-PLUS emulation
3 *
4 * Copyright (c) 2007 Magnus Damm
5 * Copyright (c) 2008 Paul Mundt
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

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

294 * 32-bit bus and CS0 to CN8. The docs mention a Cypress
295 * S29PL127J60TFI130 chipsset. Per the 'S29PL-J 002-00615
296 * Rev. *E' datasheet, it is a 128Mbit NOR parallel flash
297 * addressable in words of 16bit.
298 */
299 dinfo = drive_get(IF_PFLASH, 0, 0);
300 pflash_cfi02_register(0x0, "r2d.flash", FLASH_SIZE,
301 dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
1/*
2 * Renesas SH7751R R2D-PLUS emulation
3 *
4 * Copyright (c) 2007 Magnus Damm
5 * Copyright (c) 2008 Paul Mundt
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

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

294 * 32-bit bus and CS0 to CN8. The docs mention a Cypress
295 * S29PL127J60TFI130 chipsset. Per the 'S29PL-J 002-00615
296 * Rev. *E' datasheet, it is a 128Mbit NOR parallel flash
297 * addressable in words of 16bit.
298 */
299 dinfo = drive_get(IF_PFLASH, 0, 0);
300 pflash_cfi02_register(0x0, "r2d.flash", FLASH_SIZE,
301 dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
302 64 * KiB, FLASH_SIZE >> 16,
303 1, 2, 0x0001, 0x227e, 0x2220, 0x2200,
302 64 * KiB, 1, 2, 0x0001, 0x227e, 0x2220, 0x2200,
304 0x555, 0x2aa, 0);
305
306 /* NIC: rtl8139 on-board, and 2 slots. */
307 for (i = 0; i < nb_nics; i++)
308 pci_nic_init_nofail(&nd_table[i], pci_bus,
309 "rtl8139", i==0 ? "2" : NULL);
310
311 /* USB keyboard */

--- 62 unchanged lines hidden ---
303 0x555, 0x2aa, 0);
304
305 /* NIC: rtl8139 on-board, and 2 slots. */
306 for (i = 0; i < nb_nics; i++)
307 pci_nic_init_nofail(&nd_table[i], pci_bus,
308 "rtl8139", i==0 ? "2" : NULL);
309
310 /* USB keyboard */

--- 62 unchanged lines hidden ---