123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- // Copyright 2016 VMware, Inc. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package bdoor
- const (
- BackdoorMagic = uint64(0x564D5868)
- BackdoorPort = uint16(0x5658)
- BackdoorHighBWPort = uint16(0x5659)
- CommandGetVersion = uint32(10)
- CommandMessage = uint16(0x1e)
- CommandHighBWMessage = uint16(0)
- CommandFlagCookie = uint32(0x80000000)
- )
- type BackdoorProto struct {
- // typedef union {
- // struct {
- // DECLARE_REG_NAMED_STRUCT(ax);
- // size_t size; /* Register bx. */
- // DECLARE_REG_NAMED_STRUCT(cx);
- // DECLARE_REG_NAMED_STRUCT(dx);
- // DECLARE_REG_NAMED_STRUCT(si);
- // DECLARE_REG_NAMED_STRUCT(di);
- // } in;
- // struct {
- // DECLARE_REG_NAMED_STRUCT(ax);
- // DECLARE_REG_NAMED_STRUCT(bx);
- // DECLARE_REG_NAMED_STRUCT(cx);
- // DECLARE_REG_NAMED_STRUCT(dx);
- // DECLARE_REG_NAMED_STRUCT(si);
- // DECLARE_REG_NAMED_STRUCT(di);
- // } out;
- // } proto;
- AX, BX, CX, DX, SI, DI, BP UInt64
- size uint32
- }
- func bdoor_inout(ax, bx, cx, dx, si, di, bp uint64) (retax, retbx, retcx, retdx, retsi, retdi, retbp uint64)
- func bdoor_hbout(ax, bx, cx, dx, si, di, bp uint64) (retax, retbx, retcx, retdx, retsi, retdi, retbp uint64)
- func bdoor_hbin(ax, bx, cx, dx, si, di, bp uint64) (retax, retbx, retcx, retdx, retsi, retdi, retbp uint64)
- func bdoor_inout_test(ax, bx, cx, dx, si, di, bp uint64) (retax, retbx, retcx, retdx, retsi, retdi, retbp uint64)
- func (p *BackdoorProto) InOut() *BackdoorProto {
- p.DX.Low.Low = BackdoorPort
- p.AX.SetQuad(BackdoorMagic)
- retax, retbx, retcx, retdx, retsi, retdi, retbp := bdoor_inout(
- p.AX.Quad(),
- p.BX.Quad(),
- p.CX.Quad(),
- p.DX.Quad(),
- p.SI.Quad(),
- p.DI.Quad(),
- p.BP.Quad(),
- )
- ret := &BackdoorProto{}
- ret.AX.SetQuad(retax)
- ret.BX.SetQuad(retbx)
- ret.CX.SetQuad(retcx)
- ret.DX.SetQuad(retdx)
- ret.SI.SetQuad(retsi)
- ret.DI.SetQuad(retdi)
- ret.BP.SetQuad(retbp)
- return ret
- }
- func (p *BackdoorProto) HighBandwidthOut() *BackdoorProto {
- p.DX.Low.Low = BackdoorHighBWPort
- p.AX.SetQuad(BackdoorMagic)
- retax, retbx, retcx, retdx, retsi, retdi, retbp := bdoor_hbout(
- p.AX.Quad(),
- p.BX.Quad(),
- p.CX.Quad(),
- p.DX.Quad(),
- p.SI.Quad(),
- p.DI.Quad(),
- p.BP.Quad(),
- )
- ret := &BackdoorProto{}
- ret.AX.SetQuad(retax)
- ret.BX.SetQuad(retbx)
- ret.CX.SetQuad(retcx)
- ret.DX.SetQuad(retdx)
- ret.SI.SetQuad(retsi)
- ret.DI.SetQuad(retdi)
- ret.BP.SetQuad(retbp)
- return ret
- }
- func (p *BackdoorProto) HighBandwidthIn() *BackdoorProto {
- p.DX.Low.Low = BackdoorHighBWPort
- p.AX.SetQuad(BackdoorMagic)
- retax, retbx, retcx, retdx, retsi, retdi, retbp := bdoor_hbin(
- p.AX.Quad(),
- p.BX.Quad(),
- p.CX.Quad(),
- p.DX.Quad(),
- p.SI.Quad(),
- p.DI.Quad(),
- p.BP.Quad(),
- )
- ret := &BackdoorProto{}
- ret.AX.SetQuad(retax)
- ret.BX.SetQuad(retbx)
- ret.CX.SetQuad(retcx)
- ret.DX.SetQuad(retdx)
- ret.SI.SetQuad(retsi)
- ret.DI.SetQuad(retdi)
- ret.BP.SetQuad(retbp)
- return ret
- }
|