Skip to content

Commit ede51ec

Browse files
committed
Update drivers/examples to use updated PWM driver
The upstream PWM driver was updated to better compartmentalise and isolate individual PWM capabilities. This PR updates the demo/example/drivers living in `sonata-software` to make use of the updated PWM driver interface.
1 parent fec6c1f commit ede51ec

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

examples/automotive/cheri/receive.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
using Debug = ConditionalDebug<true, "Automotive-Receive">;
1818
using namespace CHERI;
1919
using namespace sonata::lcd;
20+
using SonataPwm = SonataPulseWidthModulation::General;
2021

2122
#define PWM_MAX_DUTY_CYCLE 255 // Max is 100%.
2223

@@ -183,7 +184,7 @@ void pwm_signal_car(CarInfo *carInfo)
183184
const uint32_t PwmDutyCycle =
184185
(SpeedOffset * DutyRange) / SpeedRange + PWM_MIN_DUTY_CYCLE;
185186
auto pwm = MMIO_CAPABILITY(SonataPwm, pwm);
186-
pwm->output_set(0, PWM_MAX_DUTY_CYCLE, PwmDutyCycle);
187+
pwm->get<0>()->output_set(PWM_MAX_DUTY_CYCLE, PwmDutyCycle);
187188
}
188189

189190
/**

libraries/lcd.cc

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ template<typename T>
88
using Cap = CHERI::Capability<T>;
99

1010
using namespace sonata::lcd;
11+
using SonataLcdBl = SonataPulseWidthModulation::LcdBacklight;
1112

1213
/**
1314
* Helper. Returns a pointer to the SPI device.
@@ -20,9 +21,9 @@ using namespace sonata::lcd;
2021
/**
2122
* Helper. Returns a pointer to the LCD's backlight PWM device.
2223
*/
23-
[[nodiscard, gnu::always_inline]] static Cap<volatile SonataLcdPwm> pwm_bl()
24+
[[nodiscard, gnu::always_inline]] static Cap<volatile SonataLcdBl> pwm_bl()
2425
{
25-
return MMIO_CAPABILITY(SonataLcdPwm, pwm_lcd);
26+
return MMIO_CAPABILITY(SonataLcdBl, pwm_lcd);
2627
}
2728

2829
static constexpr uint8_t LcdCsPin = 0;
@@ -45,7 +46,7 @@ namespace sonata::lcd::internal
4546
{
4647
// Set the initial state of the LCD control pins.
4748
set_chip_select(LcdDcPin, false);
48-
pwm_bl()->output_set(/*index =*/0, /*period=*/1, /*duty_cycle=*/255);
49+
pwm_bl()->output_set(/*period=*/1, /*duty_cycle=*/255);
4950
set_chip_select(LcdCsPin, false);
5051

5152
// Initialise SPI driver.
@@ -83,7 +84,7 @@ namespace sonata::lcd::internal
8384
// Hold LCD in reset.
8485
set_chip_select(LcdRstPin, false);
8586
// Turn off backlight.
86-
pwm_bl()->output_set(/*index =*/0, /*period=*/0, /*duty_cycle=*/0);
87+
pwm_bl()->output_set(/*period=*/0, /*duty_cycle=*/0);
8788
}
8889
} // namespace sonata::lcd::internal
8990

0 commit comments

Comments
 (0)