2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2020-02-09 21:43:22 +11:00
|
|
|
//#define PATA_DEVICE_DEBUG
|
|
|
|
|
2020-03-08 12:33:14 +01:00
|
|
|
#include <AK/Memory.h>
|
2020-03-23 13:45:10 +01:00
|
|
|
#include <AK/StringView.h>
|
2019-09-04 11:04:50 +02:00
|
|
|
#include <Kernel/Devices/PATAChannel.h>
|
|
|
|
#include <Kernel/Devices/PATADiskDevice.h>
|
2020-02-09 21:43:22 +11:00
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
2019-07-28 23:44:01 +10:00
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-08-02 23:18:47 +10:00
|
|
|
NonnullRefPtr<PATADiskDevice> PATADiskDevice::create(PATAChannel& channel, DriveType type, int major, int minor)
|
2019-07-28 23:44:01 +10:00
|
|
|
{
|
2019-08-02 23:18:47 +10:00
|
|
|
return adopt(*new PATADiskDevice(channel, type, major, minor));
|
2019-07-28 23:44:01 +10:00
|
|
|
}
|
|
|
|
|
2019-08-02 23:18:47 +10:00
|
|
|
PATADiskDevice::PATADiskDevice(PATAChannel& channel, DriveType type, int major, int minor)
|
2020-02-08 02:17:26 +01:00
|
|
|
: BlockDevice(major, minor, 512)
|
2019-08-02 23:18:47 +10:00
|
|
|
, m_drive_type(type)
|
2019-07-28 23:44:01 +10:00
|
|
|
, m_channel(channel)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PATADiskDevice::~PATADiskDevice()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* PATADiskDevice::class_name() const
|
|
|
|
{
|
|
|
|
return "PATADiskDevice";
|
|
|
|
}
|
|
|
|
|
2020-11-02 11:16:01 -07:00
|
|
|
void PATADiskDevice::start_request(AsyncBlockDeviceRequest& request)
|
2019-07-28 23:44:01 +10:00
|
|
|
{
|
2020-11-02 11:16:01 -07:00
|
|
|
bool use_dma = !m_channel.m_bus_master_base.is_null() && m_channel.m_dma_enabled.resource();
|
|
|
|
m_channel.start_request(request, use_dma, is_slave());
|
2019-07-28 23:44:01 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void PATADiskDevice::set_drive_geometry(u16 cyls, u16 heads, u16 spt)
|
|
|
|
{
|
|
|
|
m_cylinders = cyls;
|
|
|
|
m_heads = heads;
|
|
|
|
m_sectors_per_track = spt;
|
|
|
|
}
|
|
|
|
|
2020-09-11 21:11:07 -06:00
|
|
|
KResultOr<size_t> PATADiskDevice::read(FileDescription&, size_t offset, UserOrKernelBuffer& outbuf, size_t len)
|
2020-02-09 21:43:22 +11:00
|
|
|
{
|
2020-04-10 19:44:42 +10:00
|
|
|
unsigned index = offset / block_size();
|
2020-02-09 21:43:22 +11:00
|
|
|
u16 whole_blocks = len / block_size();
|
|
|
|
ssize_t remaining = len % block_size();
|
|
|
|
|
|
|
|
unsigned blocks_per_page = PAGE_SIZE / block_size();
|
|
|
|
|
|
|
|
// PATAChannel will chuck a wobbly if we try to read more than PAGE_SIZE
|
|
|
|
// at a time, because it uses a single page for its DMA buffer.
|
|
|
|
if (whole_blocks >= blocks_per_page) {
|
|
|
|
whole_blocks = blocks_per_page;
|
|
|
|
remaining = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PATA_DEVICE_DEBUG
|
2020-03-01 20:47:11 +02:00
|
|
|
klog() << "PATADiskDevice::read() index=" << index << " whole_blocks=" << whole_blocks << " remaining=" << remaining;
|
2020-02-09 21:43:22 +11:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (whole_blocks > 0) {
|
2020-11-02 11:16:01 -07:00
|
|
|
auto read_request = make_request<AsyncBlockDeviceRequest>(AsyncBlockDeviceRequest::Read, index, whole_blocks, outbuf, whole_blocks * block_size());
|
|
|
|
auto result = read_request->wait();
|
|
|
|
if (result.wait_result().was_interrupted())
|
|
|
|
return KResult(-EINTR);
|
|
|
|
switch (result.request_result()) {
|
|
|
|
case AsyncDeviceRequest::Failure:
|
|
|
|
case AsyncDeviceRequest::Cancelled:
|
|
|
|
return KResult(-EIO);
|
|
|
|
case AsyncDeviceRequest::MemoryFault:
|
|
|
|
return KResult(-EFAULT);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-02-09 21:43:22 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
off_t pos = whole_blocks * block_size();
|
|
|
|
|
|
|
|
if (remaining > 0) {
|
2020-09-11 21:11:07 -06:00
|
|
|
auto data = ByteBuffer::create_uninitialized(block_size());
|
|
|
|
auto data_buffer = UserOrKernelBuffer::for_kernel_buffer(data.data());
|
2020-11-02 11:16:01 -07:00
|
|
|
auto read_request = make_request<AsyncBlockDeviceRequest>(AsyncBlockDeviceRequest::Read, index + whole_blocks, 1, data_buffer, block_size());
|
|
|
|
auto result = read_request->wait();
|
|
|
|
if (result.wait_result().was_interrupted())
|
|
|
|
return KResult(-EINTR);
|
|
|
|
switch (result.request_result()) {
|
|
|
|
case AsyncDeviceRequest::Failure:
|
2020-02-09 21:43:22 +11:00
|
|
|
return pos;
|
2020-11-02 11:16:01 -07:00
|
|
|
case AsyncDeviceRequest::Cancelled:
|
|
|
|
return KResult(-EIO);
|
|
|
|
case AsyncDeviceRequest::MemoryFault:
|
|
|
|
// This should never happen, we're writing to a kernel buffer!
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-09-11 21:11:07 -06:00
|
|
|
if (!outbuf.write(data.data(), pos, remaining))
|
|
|
|
return KResult(-EFAULT);
|
2020-02-09 21:43:22 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
return pos + remaining;
|
|
|
|
}
|
|
|
|
|
2020-04-10 19:44:42 +10:00
|
|
|
bool PATADiskDevice::can_read(const FileDescription&, size_t offset) const
|
2020-02-09 21:43:22 +11:00
|
|
|
{
|
2020-04-10 19:44:42 +10:00
|
|
|
return offset < (m_cylinders * m_heads * m_sectors_per_track * block_size());
|
2020-02-09 21:43:22 +11:00
|
|
|
}
|
|
|
|
|
2020-09-11 21:11:07 -06:00
|
|
|
KResultOr<size_t> PATADiskDevice::write(FileDescription&, size_t offset, const UserOrKernelBuffer& inbuf, size_t len)
|
2020-02-09 21:43:22 +11:00
|
|
|
{
|
2020-04-10 19:44:42 +10:00
|
|
|
unsigned index = offset / block_size();
|
2020-02-09 21:43:22 +11:00
|
|
|
u16 whole_blocks = len / block_size();
|
|
|
|
ssize_t remaining = len % block_size();
|
|
|
|
|
|
|
|
unsigned blocks_per_page = PAGE_SIZE / block_size();
|
|
|
|
|
|
|
|
// PATAChannel will chuck a wobbly if we try to write more than PAGE_SIZE
|
|
|
|
// at a time, because it uses a single page for its DMA buffer.
|
|
|
|
if (whole_blocks >= blocks_per_page) {
|
|
|
|
whole_blocks = blocks_per_page;
|
|
|
|
remaining = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PATA_DEVICE_DEBUG
|
2020-03-01 20:47:11 +02:00
|
|
|
klog() << "PATADiskDevice::write() index=" << index << " whole_blocks=" << whole_blocks << " remaining=" << remaining;
|
2020-02-09 21:43:22 +11:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (whole_blocks > 0) {
|
2020-11-02 11:16:01 -07:00
|
|
|
auto write_request = make_request<AsyncBlockDeviceRequest>(AsyncBlockDeviceRequest::Write, index, whole_blocks, inbuf, whole_blocks * block_size());
|
|
|
|
auto result = write_request->wait();
|
|
|
|
if (result.wait_result().was_interrupted())
|
|
|
|
return KResult(-EINTR);
|
|
|
|
switch (result.request_result()) {
|
|
|
|
case AsyncDeviceRequest::Failure:
|
|
|
|
case AsyncDeviceRequest::Cancelled:
|
|
|
|
return KResult(-EIO);
|
|
|
|
case AsyncDeviceRequest::MemoryFault:
|
|
|
|
return KResult(-EFAULT);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-02-09 21:43:22 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
off_t pos = whole_blocks * block_size();
|
|
|
|
|
|
|
|
// since we can only write in block_size() increments, if we want to do a
|
|
|
|
// partial write, we have to read the block's content first, modify it,
|
|
|
|
// then write the whole block back to the disk.
|
|
|
|
if (remaining > 0) {
|
2020-09-11 21:11:07 -06:00
|
|
|
auto data = ByteBuffer::create_zeroed(block_size());
|
|
|
|
auto data_buffer = UserOrKernelBuffer::for_kernel_buffer(data.data());
|
2020-11-02 11:16:01 -07:00
|
|
|
|
|
|
|
{
|
|
|
|
auto read_request = make_request<AsyncBlockDeviceRequest>(AsyncBlockDeviceRequest::Read, index + whole_blocks, 1, data_buffer, block_size());
|
|
|
|
auto result = read_request->wait();
|
|
|
|
if (result.wait_result().was_interrupted())
|
|
|
|
return KResult(-EINTR);
|
|
|
|
switch (result.request_result()) {
|
|
|
|
case AsyncDeviceRequest::Failure:
|
|
|
|
return pos;
|
|
|
|
case AsyncDeviceRequest::Cancelled:
|
|
|
|
return KResult(-EIO);
|
|
|
|
case AsyncDeviceRequest::MemoryFault:
|
|
|
|
// This should never happen, we're writing to a kernel buffer!
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-11 21:11:07 -06:00
|
|
|
if (!inbuf.read(data.data(), pos, remaining))
|
|
|
|
return KResult(-EFAULT);
|
2020-11-02 11:16:01 -07:00
|
|
|
|
|
|
|
{
|
|
|
|
auto write_request = make_request<AsyncBlockDeviceRequest>(AsyncBlockDeviceRequest::Write, index + whole_blocks, 1, data_buffer, block_size());
|
|
|
|
auto result = write_request->wait();
|
|
|
|
if (result.wait_result().was_interrupted())
|
|
|
|
return KResult(-EINTR);
|
|
|
|
switch (result.request_result()) {
|
|
|
|
case AsyncDeviceRequest::Failure:
|
|
|
|
return pos;
|
|
|
|
case AsyncDeviceRequest::Cancelled:
|
|
|
|
return KResult(-EIO);
|
|
|
|
case AsyncDeviceRequest::MemoryFault:
|
|
|
|
// This should never happen, we're writing to a kernel buffer!
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-02-09 21:43:22 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
return pos + remaining;
|
|
|
|
}
|
|
|
|
|
2020-04-10 19:44:42 +10:00
|
|
|
bool PATADiskDevice::can_write(const FileDescription&, size_t offset) const
|
2020-02-09 21:43:22 +11:00
|
|
|
{
|
2020-04-10 19:44:42 +10:00
|
|
|
return offset < (m_cylinders * m_heads * m_sectors_per_track * block_size());
|
2020-02-09 21:43:22 +11:00
|
|
|
}
|
|
|
|
|
2019-07-28 23:44:01 +10:00
|
|
|
bool PATADiskDevice::is_slave() const
|
|
|
|
{
|
|
|
|
return m_drive_type == DriveType::Slave;
|
|
|
|
}
|
2020-02-16 01:27:42 +01:00
|
|
|
|
|
|
|
}
|