mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
commit
644076ec21
6 changed files with 77 additions and 10 deletions
|
@ -1,4 +1,8 @@
|
|||
$WW,1$$FG,5$$TX+CX,"ChangeLog"$$FG$
|
||||
$IV,1$----12/21/22 03:38:35----$IV,0$
|
||||
* Raised version number to 2.01.
|
||||
* Created $LK+PU,"FreeAll",A="MN:FreeAll"$ method to /Kernel/Memory/MAllocFree.ZC and extern to $LK+PU,"/Kernel/KernelC.HH",A="FF:::/Kernel/KernelC.HH,FreeAll"$.
|
||||
|
||||
$IV,1$----11/02/22 20:26:55----$IV,0$
|
||||
* Raised version number to 2.00.
|
||||
* Updated the $LK,"Charter",A="FI:::/Doc/Charter.DD"$ to allow non-Public-Domain MBR/UEFI bootloaders, as long as the Public Domain ZealOS HDD/DVD Boot Loaders are included, offered, and functional. The Charter upholds that all operating system code must still be 100% public domain. Updated $LK+PU,"Credits",A="FI:::/Doc/Credits.DD"$, $LK+PU,"FAQ",A="FI:::/Doc/FAQ.DD"$, $LK+PU,"Features.DD",A="FI:::/Doc/Features.DD"$, $LK+PU,"Welcome.DD",A="FI:::/Doc/Welcome.DD"$.
|
||||
|
|
|
@ -23,8 +23,12 @@
|
|||
|
||||
#define PCNET_DW_RDP 0x10
|
||||
#define PCNET_DW_RAP 0x14
|
||||
#define PCNET_DW_BDP 0x1C
|
||||
#define PCNET_DW_RESET 0x18 // reset reg location when card is in 32-bit mode
|
||||
|
||||
#define PCNET_BCR_MISC_CONFIG 2
|
||||
#define PCNET_BCR_FULL_DUPLEX_CTRL 9
|
||||
|
||||
#define PCNET_CSR_CTRLSTATUS 0
|
||||
#define PCNET_CSR_INTERRUPTS 3
|
||||
#define PCNET_CSR_FEATURECTRL 4
|
||||
|
@ -57,6 +61,11 @@
|
|||
|
||||
#define PCNET_FEATURE_APADXMT 11
|
||||
|
||||
#define PCNET_BCR_MISC_CONFIG_ASEL 1
|
||||
|
||||
#define PCNET_BCR_FULL_DUPLEX_CTRL_FDEN 0
|
||||
#define PCNET_BCR_FULL_DUPLEX_CTRL_AUIFD 1
|
||||
|
||||
#define PCNET_CTRL_INIT 0
|
||||
#define PCNET_CTRL_STRT 1
|
||||
#define PCNET_CTRL_STOP 2
|
||||
|
@ -159,6 +168,28 @@ U0 PCNetRAPWrite(U32 value)
|
|||
OutU32(PCNetIOBaseGet + PCNET_DW_RAP, value);
|
||||
}
|
||||
|
||||
U0 PCNetBCRWrite(U32 bcr, U32 value)
|
||||
{/* AMD PCNet datasheet p. 1-952
|
||||
Summary: Bus Control Registers are
|
||||
accessed via the BDP (Bus Data Port).
|
||||
Which BCR is selected is based on the value
|
||||
in the RAP. */
|
||||
|
||||
PCNetRAPWrite(bcr);
|
||||
OutU32(PCNetIOBaseGet + PCNET_DW_BDP, value);
|
||||
}
|
||||
|
||||
U32 PCNetBCRRead(U32 bcr)
|
||||
{/* AMD PCNet datasheet p. 1-952
|
||||
Summary: Bus Control Registers are
|
||||
accessed via the BDP (Bus Data Port).
|
||||
Which BCR is selected is based on the value
|
||||
in the RAP. */
|
||||
|
||||
PCNetRAPWrite(bcr);
|
||||
return InU32(PCNetIOBaseGet + PCNET_DW_BDP);
|
||||
}
|
||||
|
||||
U0 PCNetCSRWrite(U32 csr, U32 value)
|
||||
{/* AMD PCNet datasheet p. 1-952
|
||||
Summary: Control and Status Registers are
|
||||
|
@ -181,6 +212,26 @@ U32 PCNetCSRRead(U32 csr)
|
|||
return InU32(PCNetIOBaseGet + PCNET_DW_RDP);
|
||||
}
|
||||
|
||||
U0 PCNetAutoLinkSelect()
|
||||
{
|
||||
U32 bcr = PCNetCSRRead(PCNET_BCR_FULL_DUPLEX_CTRL);
|
||||
|
||||
Bts(&bcr, PCNET_BCR_FULL_DUPLEX_CTRL_FDEN);
|
||||
Bts(&bcr, PCNET_BCR_FULL_DUPLEX_CTRL_AUIFD);
|
||||
|
||||
PCNetBCRWrite(PCNET_BCR_FULL_DUPLEX_CTRL, bcr);
|
||||
}
|
||||
|
||||
U0 PCNetEnableFullDuplex()
|
||||
{
|
||||
U32 bcr = PCNetCSRRead(PCNET_BCR_MISC_CONFIG);
|
||||
|
||||
Bts(&bcr, PCNET_BCR_MISC_CONFIG_ASEL);
|
||||
|
||||
PCNetBCRWrite(PCNET_BCR_MISC_CONFIG, bcr);
|
||||
}
|
||||
|
||||
|
||||
U0 PCNetSWStyleSet()
|
||||
{/* AMD PCNet datasheet p. 1-968
|
||||
In CSR58 (Software Style), the 8-bit
|
||||
|
@ -260,9 +311,9 @@ U0 PCNetBuffersAllocate()
|
|||
pcnet.rx_de_buffer = dev.uncached_alias + pcnet.rx_de_buffer_phys; // we want uncached
|
||||
pcnet.tx_de_buffer = dev.uncached_alias + pcnet.tx_de_buffer_phys; // access to these.
|
||||
|
||||
pcnet.rx_buffer_addr_phys = CAlloc(ETHERNET_FRAME_SIZE * PCNET_RX_BUFF_COUNT, Fs->code_heap);
|
||||
pcnet.rx_buffer_addr_phys = CAllocAligned(ETHERNET_FRAME_SIZE * PCNET_RX_BUFF_COUNT, 16, Fs->code_heap);
|
||||
|
||||
pcnet.tx_buffer_addr_phys = CAlloc(ETHERNET_FRAME_SIZE * PCNET_TX_BUFF_COUNT, Fs->code_heap);
|
||||
pcnet.tx_buffer_addr_phys = CAllocAligned(ETHERNET_FRAME_SIZE * PCNET_TX_BUFF_COUNT, 16, Fs->code_heap);
|
||||
|
||||
//Shrine does a check and returns -1 here, if the end of either buffer exceeds 0x100000000
|
||||
|
||||
|
@ -361,7 +412,7 @@ U0 PCNetDirectInit()
|
|||
|
||||
U8 *PCNetInitBlockSetup()
|
||||
{
|
||||
U8 *setup = CAlloc(sizeof(CPCNetBufferSetup), Fs->code_heap);
|
||||
U8 *setup = CAllocAligned(sizeof(CPCNetBufferSetup), 16, Fs->code_heap);
|
||||
CPCNetBufferSetup *u_setup = setup + dev.uncached_alias;
|
||||
U32 p_setup;
|
||||
|
||||
|
@ -426,6 +477,7 @@ U0 PCNetConfigModeExit()
|
|||
Btr(&csr, PCNET_CTRL_INIT);
|
||||
Btr(&csr, PCNET_CTRL_STOP);
|
||||
|
||||
Bts(&csr, PCNET_CTRL_IENA);
|
||||
Bts(&csr, PCNET_CTRL_STRT);
|
||||
|
||||
PCNetCSRWrite(PCNET_CSR_CTRLSTATUS, csr);
|
||||
|
@ -433,10 +485,9 @@ U0 PCNetConfigModeExit()
|
|||
|
||||
U0 PCNetUploadConfig()
|
||||
{/* Upload new config and wait for card to acknowlege */
|
||||
U32 csr = PCNetCSRRead(PCNET_CSR_CTRLSTATUS);
|
||||
U32 csr = 0;
|
||||
|
||||
Bts(&csr, PCNET_CTRL_INIT);
|
||||
Bts(&csr, PCNET_CTRL_IENA);
|
||||
|
||||
PCNetCSRWrite(PCNET_CSR_CTRLSTATUS, csr);
|
||||
|
||||
|
@ -449,7 +500,6 @@ U0 PCNetUploadConfig()
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
I64 PCNetDriverOwns(CPCNetDescriptorEntry* entry)
|
||||
{/* Returns whether the value of the OWN bit of the
|
||||
Descriptor Entry is zero. If 0, driver owns,
|
||||
|
@ -681,6 +731,10 @@ U0 PCNetInit()
|
|||
|
||||
PCNetTXAutoPadEnable;
|
||||
|
||||
PCNetAutoLinkSelect;
|
||||
|
||||
PCNetEnableFullDuplex;
|
||||
|
||||
PCNetUploadConfig;
|
||||
|
||||
csr = PCNetCSRRead(PCNET_CSR_CTRLSTATUS);
|
||||
|
|
|
@ -13,7 +13,7 @@ CTask *sys_winmgr_task,
|
|||
U8 *rev_bits_table; //Table with U8 bits reversed
|
||||
CDate local_time_offset;
|
||||
F64 *pow10_I64,
|
||||
sys_os_version = 2.00;
|
||||
sys_os_version = 2.01;
|
||||
|
||||
CAutoCompleteDictGlobals acd;
|
||||
CAutoCompleteGlobals ac;
|
||||
|
|
|
@ -555,6 +555,7 @@ public extern U8 *ReAlloc( U8 *src, U64 size, CTask *mem_task=NU
|
|||
public _extern _MHEAP_CTRL CHeapCtrl *MHeapCtrl( U8 *src);
|
||||
public _extern _MSIZE I64 MSize( U8 *src); //size of heap object
|
||||
public _extern _MSIZE2 I64 MSize2( U8 *src); //Internal size
|
||||
public extern U0 FreeAll(...); //Free all pointers passed
|
||||
|
||||
#help_index "Memory/HeapCtrl"
|
||||
public extern U0 HeapCtrlDel( CHeapCtrl *hc);
|
||||
|
|
|
@ -504,3 +504,11 @@ U8 *SysStrNew(U8 *buf)
|
|||
{//Alloc copy of string in System task's heap.
|
||||
return StrNew(buf, sys_task);
|
||||
}
|
||||
|
||||
U0 FreeAll(...)
|
||||
{// Free all pointers passed
|
||||
U64 cur_arg = 0;
|
||||
|
||||
while (argc--)
|
||||
Free(argv[cur_arg++]);
|
||||
}
|
||||
|
|
|
@ -15,8 +15,8 @@ U0 LoadDocDefines()
|
|||
//$LK,"DD_BOOT_HIGH_LOC_DVD",A="FF:::/System/Boot/BootDVD.ZC,DD_BOOT_HIGH_LOC_DVD"$
|
||||
|
||||
$TR,"LineRep"$
|
||||
$ID,2$DefinePrint("DD_ZEALOS_LOC","98,675");
|
||||
$ID,-2$
|
||||
$ID,2$DefinePrint("DD_ZEALOS_LOC","98,709");
|
||||
$ID,-2$
|
||||
DefinePrint("DD_MP_VECT", "%08X", MP_VECT_ADDR);
|
||||
DefinePrint("DD_MP_VECT_END", "%08X", MP_VECT_ADDR + COREAP_16BIT_INIT_END - COREAP_16BIT_INIT - 1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue