VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/DevEEPROM.h@ 5726

Last change on this file since 5726 was 5724, checked in by vboxsync, 17 years ago

Export to OSE.

File size: 3.1 KB
Line 
1/** @file
2 * Microware-compatible 64x16-bit 93C46 EEPROM Emulation.
3 */
4
5/*
6 * Copyright (C) 2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17/* Interface */
18#include <iprt/types.h>
19
20/**
21 * 93C46-compatible EEPROM device emulation.
22 */
23class EEPROM93C46 {
24public:
25 EEPROM93C46(const uint16_t * initial = 0);
26
27 /** General definitions */
28 enum {
29 /** Size of EEPROM in words */
30 SIZE = 64,
31 /** Number of bits per word */
32 WORD_SIZE = 16,
33 /** Number of address bits */
34 ADDR_SIZE = 6,
35 /** Number of bits in opcode */
36 OPCODE_SIZE = 2,
37 /** The most significant bit mask in data word */
38 DATA_MSB = 1<<(WORD_SIZE-1),
39 /** Address mask */
40 ADDR_MASK = (1<<ADDR_SIZE)-1,
41 /** The most significant bit mask in op+addr bit sequence */
42 OPADDR_MSB = 1<<(OPCODE_SIZE+ADDR_SIZE-1)
43 };
44 /**
45 * Names of signal wires
46 */
47 enum Wires {
48 SK=0x1, ///< Clock
49 CS=0x2, ///< Chip Select
50 DI=0x4, ///< Data In
51 DO=0x8 ///< Data Out
52 };
53
54
55 uint32_t read();
56 void write(uint32_t wires);
57
58 /* @todo save and load methods */
59
60protected:
61 /** Actual content of EEPROM */
62 uint16_t data[SIZE];
63
64private:
65 /** current state.
66 *
67 * EEPROM operates as a simple state machine. Events are primarily
68 * triggered at positive edge of clock signal (SK). Refer to the
69 * timing diagrams of 93C46 to get better understanding.
70 */
71 enum State {
72 /** Initial state. Waiting for start condition (CS, SK, DI high). */
73 STANDBY,
74 /** Reading data in, shifting in the bits into 'word'. */
75 READING_DI,
76 /** Writing data out, shifting out the bits from 'word'. */
77 WRITING_DO,
78 /** Waiting for CS=0 to indicate we are busy (DO=0). */
79 WAITING_CS_FALL,
80 /** Waiting for CS=1 to indicate we are ready (DO=1). */
81 WAITING_CS_RISE
82 } state;
83 /** setting writeEnable to false prevents write and erase operations */
84 bool writeEnabled;
85 /** intermediate storage */
86 uint16_t word;
87 /** currently processed bit in 'word' */
88 uint16_t mask;
89 /** decoded address */
90 uint16_t addr;
91 /** Data Out, Data In, Chip Select, Clock */
92 uint32_t internalWires;
93
94 /** Pointer to decoded operation. When no operation has been decoded yet
95 * it points to opDecode.
96 */
97 State (EEPROM93C46::*op)(void);
98
99 // Operation handlers
100 State opDecode();
101 State opRead();
102 State opWrite();
103 State opWriteAll();
104
105 /** Helper method to implement write protection */
106 void storeWord(uint32_t addr, uint16_t value);
107};
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette