summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/HALKit/AMD64/HalDebugPort.cc
blob: 7eada6468a2873e56824435400f2e3b9d16a9003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* -------------------------------------------

	Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.

------------------------------------------- */

//! @file DebuggerPort.cc
//! @brief UART debug via packets.

#include <ArchKit/ArchKit.h>
#include <KernelKit/DebugOutput.h>

// after that we have start of additional data.

namespace NeOS
{
	void rt_debug_listen(DebuggerPortHeader* theHook) noexcept
	{
		if (theHook == nullptr)
			return;

		for (UInt32 i = 0U; i < kDebugMaxPorts; ++i)
		{
			HAL::rt_out16(theHook->fPort[i], kDebugMag0);
			HAL::rt_wait_400ns();

			HAL::rt_out16(theHook->fPort[i], kDebugMag1);
			HAL::rt_wait_400ns();

			HAL::rt_out16(theHook->fPort[i], kDebugMag2);
			HAL::rt_wait_400ns();

			HAL::rt_out16(theHook->fPort[i], kDebugMag3);
			HAL::rt_wait_400ns();

			if (HAL::rt_in16(theHook->fPort[i]) != kDebugUnboundPort)
				++theHook->fPortCnt;

			HAL::rt_wait_400ns();
		}
	}
} // namespace NeOS